Tool/software: Code Composer Studio
Hi, recently, I was testing RTLS Monitor CC26X2 ver 0.9.5 with SDK 3.30.
The result is well logged but it does not appear in the graph.
Please check this issue.
Best regards,
Inseob
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hi, recently, I was testing RTLS Monitor CC26X2 ver 0.9.5 with SDK 3.30.
The result is well logged but it does not appear in the graph.
Please check this issue.
Best regards,
Inseob
Hi Marie,
Yes, I'm using AoA Boosterpack.
Even if, I do not use it, the monitor program has to draw the graph I think.
Best regards,
Inseob
Hi Inseob,
The issue you experience is due to the current incompatibility between version 0.9.5 of the RTLS Monitor and the latest SDK (3.30). In the previous SDK, it was only data from the passive nodes that would be graphed for AoA, but now you can also get data from the master. However, the GUI is not updated for this.
If you don't want to wait for a new release of the RTLS Monitor, you can easily fix this yourself:
1. Open "RTLS_Monitor_CC26X2" v.0.9.5 in "GUI Composer":
2. Edit the line that defines the nodes to use for AoA. This is line #107 in file RTLS_Monitor_CC26X2/app.js:
// Current line in app.js #106 ... #107 var graphNodesAoA = rtls.passives.slice(0, 4); #108 ... // Change to this: #106 ... #107 var graphNodesAoA = [rtls.master].concat(rtls.passives.slice(0, 4)); #108 ...
3. Run your edited version of the monitor:
Hope this helps!
Best regards,
Vetle
Hi,
This issue should be resolved in the next quarterly release.
Best regards,
Vetle