Tool/software:
I have purchased the MSP-TS430PN80C development board. How can I obtain the relevant routines?
Please use this website: https://www.ti.com/tool/MSP-ULTRASONIC-DESIGN-CENTER
All MSP430's USS is in here, please go through this website carefully~
Hi, please using EVM430-FR6043 for USS application.
There are a lot of circuit and layout optimizations for USS in EVM430-FR6043, which MSP-TS430PN80C can not do this part.
Once you get a EVM430-FR6043, please refer to Gas USS in view more in https://www.ti.com/tool/MSP-ULTRASONIC-DESIGN-CENTER.
C:\ti\MSP430Ware_3_80_14_01\examples\devices\MSP430FR5xx_6xx\MSP430FR6043_MSP430FR6041_MSP430FR5043_MSP430FR5041_Code_Examples\C
msp430fr6043_lpmx.c example
For the wakeup method, please refer to https://www.ti.com/lit/ds/symlink/msp430fr6043.pdf
9.5 Operating Modes, you can use interrupt to wake from LPM0 through LPM4, and reset from LPM3.5 and LPM4.5.
If I configure LMP3 mode sleep, then I need to place the entire ultrasound detection and data reporting in the timed interrupt handling function. After the interrupt handling function is executed, the MCU will automatically enter sleep until the next interrupt. Similarly, I need to place the parameter configuration function in the IO interrupt handling function. Is this understanding correct? And do we need to consider the issue of nested interrupts?
If I configure LMP3 mode sleep, then I need to place the entire ultrasound detection and data reporting in the timed interrupt handling function. After the interrupt handling function is executed, the MCU will automatically enter sleep until the next interrupt.
You can do this part in main while, both is OK, but I am note recommend to do large job in interrupt.
Using a status machine to handle this and interrupt can only to be used as a wake up source.
Both is OK.
Similarly, I need to place the parameter configuration function in the IO interrupt handling function.
I don't understand what's config param.
Only one wake up source(interrupt) is OK, MSP430 need to call specific function to entering the LPM, so you can do the init function after startup and manually entering the LPM.
Please refer to driverlib:
C:\ti\MSP430Ware_3_80_14_01\driverlib\driverlib\MSP430FR5xx_6xx
C:\ti\MSP430Ware_3_80_14_01\driverlib\examples\MSP430FR5xx_6xx
**Attention** This is a public forum