I've CRC value into uint that is:
95DF
My target is return from uint two byte in QByteArray.
I get this:
`CRC uint 95DF
//in simple i should return this
QByteArray[0] = 95;
QByteArray[1] = DF;
I've tryed convert uint to QString but this one change return value. Ho to keep the result and return QByteArray ?
Thanks