ibaiGorordo / AWR1642-Read-Data-Python-MMWAVE-SDK-2

Python program to read and plot the data in real time from the AWR1642 and IWR1642 mmWave radar boards (Texas Instruments).
MIT License
136 stars 57 forks source link

Question about EVM flash file #40

Closed ChrisBaxter8040 closed 2 years ago

ChrisBaxter8040 commented 3 years ago

I have a question regarding the use of other TI lab demos with this python program. I am using the IWR 1642BOOST from TI and It has the Obstacle detection binary flashed onto the EVM. Is it possible to use this python program to graph the output?

ibaiGorordo commented 3 years ago

It depends on whether the data is transmitted in the same format as in the out of the box demo. In the case of the obstacle detection, the format is slightly different (image below), so you would have to modify the code in this repository a bit to work with that demo image Source: https://dev.ti.com/tirex/explore/node?node=AGQLWBtluPOb4IBBpo4JYw__AocYeEd__LATEST

ChrisBaxter8040 commented 3 years ago

Thank you for your reply. I will attempt the modification and provide my findings here

ibaiGorordo commented 3 years ago

Good luck! It should not be that hard, but let me know if you have any questions.

ChrisBaxter8040 commented 3 years ago

Thank you for your help, I was able to parse the packet data via the use of the struct library in python.