PRS1 compliance duration stuff, cms50i deviceid fix2

This commit is contained in:
Mark Watkins 2014-09-19 00:32:09 +10:00
parent fd50d81798
commit a179f290a4

View File

@ -641,7 +641,7 @@ void CMS50F37Loader::setDeviceID(QString str)
quint8 msb = 0;
QByteArray ba = str.toLocal8Bit();
for (int i=6; i > 0; i--) {
for (int i=6; i >= 0; i--) {
msb <<= 1;
msb |= (ba.at(i) >> 7) & 1;
cmd[i+2] = ba.at(i) | 0x80;