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.
Hi,
I have been successfully able to read ultrasonic measurements using the PGA460PSM-EVM and MSP-EXP430F5529LP using the software GUI and the Prowave 200GE180 200kHz ultrasonic transducer. I am now trying to transfer the register values I require into the PGA460_USSC.cpp file and run the GetDistance.ino file in Standalone Mode. This is so that I can integrate it into a full system.
Here is a screenshot of the GUI showing the successful range finding of a wall 65cm away.
I have followed the steps Akeem gave in the comments of this post to download the correct software library to run the getDistance file:
https://e2e.ti.com/support/sensors/f/1023/t/912363
I commented out the #define userInputMode line in GetDistance.ino and I made changes in the PGA460_USSC.cpp file such that the register values match those from the GUI memory map. Here is the contents of the PGA460_USSC.cpp file:
Hi Tim,
You should be able to use the library with other PGA460 boards and not just the BOOSTXL hardware.
Could you also try doing an echo data dump and then plotting the result? After doing this, do you see a similar plot as the one shown on the GUI?
I’d also recommend you reading and printing out the register values to make sure that the register values are the same values shown by the GUI.
To obtain the register values for the Energia code, you can paste the following code right before you trigger a burst and listen operation:
for (int register_number=0x14; register_number<0x2c; register_number++) { register_value=ussc.registerRead( register_number); Serial.write("Register number:"); Serial.print(register_number, HEX); Serial.write(", Register value:"); Serial.println(register_value, HEX); } for (int register_number=0x40; register_number<0x4E; register_number++) { register_value=ussc.registerRead( register_number); Serial.write("Register number:"); Serial.print(register_number, HEX); Serial.write(", Register value:"); Serial.println(register_value, HEX); } for (int register_number=0x5F; register_number<0x80; register_number++) { register_value=ussc.registerRead( register_number); Serial.write("Register number:"); Serial.print(register_number, HEX); Serial.write(", Register value:"); Serial.println(register_value, HEX); }
Regards,
Mekre