Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 396 → Rev 397

/QMK-Groundstation/branches/own_com_lib/com/Communication.h
11,9 → 11,9
class Communication{
public:
//connect to MK
virtual void connectMK(string) {};
virtual void connect_MK(string) {};
//send command to MK
virtual bool sendCmd(char, int, char[150],unsigned int, bool) { return false; };
virtual void stopReSend() {};
virtual bool send_cmd(char, int, char[150],unsigned int, bool) { return false; };
virtual void stop_resend() {};
};
#endif