You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: The following BLE examples doesn't work on the NUCLEO_F411RE with the ST shield:
BLE_BatteryLevel
BLE_Button
BLE_EddystoneObserver
BLE_EddystoneService
BLE_GapButton
BLE_HeartRate
BLE_LED
BLE_LEDBlinker
BLE_Thermometer
The cause of the failure is the use of an LED and the SPI1 in the same application. Even if the board define 4 LED, only 1 LED is actually accessible to the programmer and the LED line is shared with the clock line of the SPI1. Using both at the same time will cause failure regarding SPI communication and in this case prevent the application to actually work.
Workaround: Remove the code related to the LED (including the declaration!), it is only use to show that the board is alive.