Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 397 → Rev 399

/QMK-Groundstation/branches/own_com_lib/com/Communication.h
9,6 → 9,8
using namespace std;
 
class Communication{
protected:
bool connected;
public:
//connect to MK
virtual void connect_MK(string) {};
15,5 → 17,7
//send command to MK
virtual bool send_cmd(char, int, char[150],unsigned int, bool) { return false; };
virtual void stop_resend() {};
bool is_connected();
};
#endif