You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On my board BMP585 module with my STM32G030 cpu, in the bmp5_init(), I can read the chip id as 0x51, but then the NVM status reg (0x28) always return 0, which will result in a power fail error. What can I do next?
The text was updated successfully, but these errors were encountered:
I've found the reason: I was in debug mode, and then my motherboard couldn't reset the BMP585, the ISR had already been read many times, and the NVM status couldn't be read, so it failed. I had no choice but to add a soft reset before bmp5_init(), and I also had to modify the soft reset code to prevent it from reading the ISR. There's a bit of a strange feeling here.
On my board BMP585 module with my STM32G030 cpu, in the bmp5_init(), I can read the chip id as 0x51, but then the NVM status reg (0x28) always return 0, which will result in a power fail error. What can I do next?
The text was updated successfully, but these errors were encountered: