I tried to open this format, but as I understood it, it was coded or hard pressed. The data ("qqqq.trc") is taken from the oscilloscope. How to display it, at least for a start I will not read the mind.

QString str; char ch; //QFile file ("qqqq.txt"); QFile file ("qqqq.trc"); file.open(QIODevice::ReadOnly); for (;!file.atEnd();) { file.getChar(&ch); str += ch; //qDebug() <<str; } qDebug() <<str; 

All he gives me is

  "rc8 

I tried to find out about the .trc extension on the Internet or did not find anything, but I didn’t understand what I found. A bunch of .trc C ++, .trc Qt, also searched.

0