<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hello,<br>
         I use rtl_sdr to collect some data into a bin file(file.bin).<br>
         As from the wiki, I think it is parsed like this : <br>
            <i>fd = open("file.bin","r") ;</i><i><br>
    </i><i>        char I[];</i><i><br>
    </i><i>        char Q[];</i><i><br>
    </i><i>        </i><i>loop :</i><i><br>
    </i><i>             read(fd, I, 1) ;</i><i><br>
    </i><i>             read(fd, Q,1) ;</i><i><br>
    </i><i>        endloop</i><i><br>
    </i><i>        char *p = Q ;</i><i><br>
    </i><i>        loop :</i><i><br>
    </i><i>            printf("%f\n", (float*)p);</i><i><br>
    </i><i>            p += 4 ;</i><i><br>
    </i><i>        </i><i>endloop</i><br>
         But this code can only print 0.00000<br>
       <br>
         I don't know where the error is.<br>
         Please help me.<br>
         Thank you.<br>
  </body>
</html>