2020-08-07 03:00 PM
Hello! I am trying to control a set of leds through bluetooth. In the main function ,after the main task I call the function that manage the leds and into this function there is HAL_Delay that has to receive its argument from bluetooth. The problem starts when I try to find the board using ST BLE Sensor app :
1) It takes a remarkable time to appear on the devices' list. When I connect successfuly to board then appear the second issue:
2) when I send the data (write characteristic) it also delays. How could I solve these delays?
2020-08-28 08:53 AM
2020-09-01 02:27 PM
Hello Remi! Which basic presentations are you talking about? The application notes or the workshops? I have read Building wireless applications with
STM32WB Series microcontrollers.
Overloading the function void UTIL_SEQ_EvtIdle causes problems in the connection(the connection doesn't occur). I overloaded it like this:
void UTIL_SEQ_EvtIdle( UTIL_SEQ_bm_t task_id_bm, UTIL_SEQ_bm_t evt_waited_bm )
{
UTIL_SEQ_Run( 1<<MY_TASK_ID );
}
Could you please comment the last file? I tried to implement the code "BLE Specific" in my BLE application but the file #include "FreeRTOSConfig.h" is not being found.
2020-09-03 06:23 AM
do I have to generate BLE together with FreeRTOS?