Okay, I get it, I recommend you look at the BLE_HeartRate example, which sends a heart rate notification every second to the central device.
In the hrs_app.c file > HRSAPP_Measurement(), manage the value to be notified and call aci_gatt_update_char_v...
Hi, in BLE it is the Central device which will initiate the connection, discover the services and enable the notifications.If I understand correctly, in your case, BLE application on WB55 is peripheral and your smartphone is central, so the activatio...
hi,In the trace you give, we don't see the connection with a peer device, which would explain why you can't inform the non-existent client.Do you confirm that you are making a connection before pressing the button?
Hi Ledi,To solve your problem quickly:
If you are not using the Mass Storage feature of the STlink: can change the type of your STLink, switching from: STM8/STM32 Debug+Mass storage+VCP+Bridge to STM8/STM32 Debug+2VCP+Bridge.(This can be done using c...
Hi Pascal,
For your use case, the easiest way is to use the Timer Server.In short, it's going to look something like this:
HW_TS_Create(CFG_TIM_PROC_ID_ISR, &(YourAPP_Context.TimerMeasurement_Id), hw_ts_Repeated, CB_Computing_Sensor_Data);HW_TS_Start...