1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1185 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
peabody124 2010-07-30 01:30:53 +00:00 committed by peabody124
parent e1f2f0264b
commit daf88b2175

View File

@ -29,7 +29,7 @@ class MyThread : public QThread {
int received = hidHandle.receive(0, buf, BUF_LEN, 3500);
qDebug() << received << " bytes received \"" << QString().toNum(buf[0]) << buf[1] << "\"";
qDebug("%u bytes received. First value %x second %x", received,buf[0], buf[1]);
}
};