User Activity

I built the project using the STM32CubeExpansion_LRWAN_V1.1.2 example, and I want to use the EEPROM function in LoRa Application.I am trying to declare eeprom related code in a separate file, but the linker cannot import HAL functions.​.\mlm32l07x01\...
I implemented the eeprom function by referring to the link above. However, there is a phenomenon that the device restarts while switching pages(Looking at the internal code, there is a problem when deleting the page.).Here's the part I modified.1. In...
When getting the value from the internal temperature sensor, the value is not stable.I am testing it inside the office, and the chip surface temperature is 25 degrees Celsius.The code outputs the internal temperature sensor value every second, and it...
set GPIO Output as pull down on STM32CubeMX.HAL_GPIO_Write( Module_PWR_CTR_Port1, Module_PWR_CTR_Pin, RESET ); HAL_GPIO_Write( Module_PWR_CTR_Port2, Module_PWR_CTR_Pin, RESET ); HAL_GPIO_Write( Module_PWR_CTR_Port3, Module_PWR_CTR_Pin, RESET );   __H...
I am currently coding on a board developed with STM32F030, and I ran into a stupid problem.Currently, there is usart (A: serial communication) to communicate with the module.​To test this, we connected to usart (B: serial communication) set as the de...