Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 396 → Rev 397

/QMK-Groundstation/branches/own_com_lib/com/QTCommunication.cpp
1,13 → 1,19
#include <QTCommunication.h>
 
void QTCommunication::connectMK(string addr) {
/**
* connect to Mikrokopter
*/
void QTCommunication::connect_MK(string addr) {
};
 
bool QTCommunication::sendCmd(char cmd, int address, char data[150], unsigned int length, bool resend) {
/**
* send command to Mikrokopter
*/
bool QTCommunication::send_cmd(char cmd, int address, char data[150], unsigned int length, bool resend) {
return true;
};
 
void QTCommunication::stopReSend() {
void QTCommunication::stop_resend() {
};