Hello, I’m working on a project involving an STM32 and a DWM1001-DEV module. I was able to successfully print data from the DWM1001 on Tera Term by manually entering commands, but when I try to do the same using an STM32 or Arduino, I don’t get any response. My understanding is that to enter Shell Mode, I need to send "Enter Enter"
(\r\r
) first, followed by "lec\r"
to start continuous location tracking. However, when I try sending this sequence from my microcontroller, it doesn’t seem to work. I’ve tried different variations, including adding delays between sending \r\r
and lec
, as well as repeating \r\r
multiple times before sending lec
, but still no response. It works perfectly when entered manually in Tera Term, so I’m unsure why it’s not working via UART from my microcontroller. Any insights on what might be causing this or how to properly initialize Shell Mode and send commands programmatically would be greatly appreciated.