If I google "hackrf iq",I will be told that "The HackRF logs are IQ data pairs, stored as unsigned 8 bit integers "..............
even comment in gr-osmosdr say is unsigned.....
/* HackRF device produces 8 bit unsigned IQ data */
...........
_lut.push_back( gr_complex( (float(char(i >> 8))) * (1.0f/128.0f),
(float(char(i & 0xff))) * (1.0f/128.0f) ) );
...........
Maybe It should be mentioned.
The text was updated successfully, but these errors were encountered:
If I google "hackrf iq",I will be told that "The HackRF logs are IQ data pairs, stored as unsigned 8 bit integers "..............
even comment in gr-osmosdr say is unsigned.....
Maybe It should be mentioned.
The text was updated successfully, but these errors were encountered: