mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
PRS1 compliance duration stuff, cms50i deviceid fix2
This commit is contained in:
parent
fd50d81798
commit
a179f290a4
@ -641,7 +641,7 @@ void CMS50F37Loader::setDeviceID(QString str)
|
|||||||
quint8 msb = 0;
|
quint8 msb = 0;
|
||||||
|
|
||||||
QByteArray ba = str.toLocal8Bit();
|
QByteArray ba = str.toLocal8Bit();
|
||||||
for (int i=6; i > 0; i--) {
|
for (int i=6; i >= 0; i--) {
|
||||||
msb <<= 1;
|
msb <<= 1;
|
||||||
msb |= (ba.at(i) >> 7) & 1;
|
msb |= (ba.at(i) >> 7) & 1;
|
||||||
cmd[i+2] = ba.at(i) | 0x80;
|
cmd[i+2] = ba.at(i) | 0x80;
|
||||||
|
Loading…
Reference in New Issue
Block a user