Hi!
I need save hex format, but I don't know how to do it
I have try code but it does not correct
Qt Code:
  1. QString filename;
  2. filename ="./data.hex";
  3. QFile file(filename);
  4. QByteArray frame_data;
  5. frame_data.append("D1A0A0FF");
  6. QByteArray frame_convert;
  7. frame_convert = QByteArray::fromHex(frame_data);
  8.  
  9. if(file.open(QFile::WriteOnly)){
  10. QDataStream out(&file);
  11. out<< frame_convert;
  12. }
To copy to clipboard, switch view to plain text mode 
have solution for this?
thanks!