Hi Sean! Am Montag, 29. April 2019 19:23:25 UTC+2 schrieb Sean Landerkin: > > ... how do I read the data that is written in the output.x file that is > written by rb_file.py. Since its raw data I cant sudo nano the files and I > am not quite sure how to convert it to something like a .txt or csv file > that I can then parse through. Any suggestions on how I would do this? >
Never use sudo during development. Instead add yourself (your user ID) to the group pruio, and work from user space. Regarding reading the data I cannot help. I just learned a bit Python for coding the examples, but never used it again. The data get written by libc.fwrite(), so checking function libc.fread() may be a good start. I guess creating a size matching UInt16 array and reading in the data will do. Regards -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/ddb89633-f583-48cd-919e-bb423d673e6b%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
