User Activity

STM32WB55 UpdateCharacteristic size.Hello, I'm using the STM32WB55 on the NUCLEO Board.I need to change the Char_Value_Length in the same connection. For example, the first UpdateCharacteristic size = 50Byte and after change to 55 Byte.It is possibl...
Hi,I have an STM32G0 with VBATT input for the RTC. When I restart the circuit, the time is reset.At the power On I write this instruction :  HAL_RTCEx_BKUPRead(&hrtc, RTC_BKP_DR1);Before of the Power Off :HAL_RTCEx_BKUPWrite(&hrtc, RTC_BKP_DR1, 0x32F...
Hello, I have a problem with a typedef struct.I made a typedef struct :typedef struct BMP280_HandleTypeDef{  uint16_t dig_T1;  int16_t dig_T2;  int16_t dig_T3;} BMP280_HandleTypeDef ;In my function I declare the instance of it :void myfunction{BMP280...