User Activity

Building a product that utilizes BLE communication and since this is a new product, the STM32WB05KN was chosen due to the BlueNRG line being phased out.Unlike the BlueNRG line, they have a UART interface that would be advantageous to use, but seems t...
I have Alarm A and Alarm B both enabled. Alarm A is triggered every second, Alarm B is triggered every minute.They are rock solid for hours to days, but at seemingly random times, the RTC freezes.Here is AlarmA handler:void HAL_RTC_AlarmAEventCallbac...
I have a definition file (.h file) that contains some data type definitions. I'd like to use them while running the Simulator of TouchGFX, but when I run the simulator it can not find that .h file.Where do I add file and path inclusions for the Simul...
Working with the RTC I'm having some issue with the callback only being called a single time. void HAL_RTC_AlarmAEventCallback(RTC_HandleTypeDef *hrtc) { RTC_AlarmTypeDef sAlarm; uint32_t hobb_time; __HAL_RTC_ALARM_CLEAR_FLAG(hrtc, RTC_FLAG_AL...
I'd like to create a dynamic set of screens, where variables determine what containers are visable. Has anyone done anything like this?For instance, will have a series of settings screens and based on those settings/variables, the screens will dynami...