User Activity

Hello,I made my custom board with a STM32WLE5CC micro and I am trying to program it using the SW interface. I have a ST-LINK/V2 where I connect the SWDIO, SWCLK, TRACE_SWO, NRST, VCC and GND pins from my board.When I try to program it using STM32Cube...
Hey,I am trying to modify some compiler/linker directives from IAR to GCC. I think I already managed to solve the first two obstacles:1 - In order to not initialize a variable saved in some register:static volatile __no_init uint32_t SystemInfoFlags;...
I am using the LPTIM1 to aquire a sensor measurement trough interruption each T period. When I set it in continous mode (reference manual says: To enable the continuous counting, the CNTSTRT bit must be set) everything works out well. HAL_LPTIM_TimeO...
Anyone can explain me where do the following constants come from and what is their function in the RTC? I am starting my own application and I would like to know if these values suit my own application.
Hello,I am trying to use the LPTIM1 as a timeout counter of 5s. Each timeout the device would read a measured value from a sensor and send it by uplink.I want to trigger the LPTIM1 by software, but I do not know how to do this. This is probably a new...