Hello,
What i need to start with mbed and BLUENRG-232N ?
What libraries ?
Somebody uses it ?
Thanks for advance.
Hi Didier,
This is probably a good starting point:
Regards
Anna
Hello,
Iâm trying tu use BatteryDemo
I have write in custom_targets.json
"
{
âMCU_STM32F469xGâ: {
âinheritsâ: [
âMCU_STM32F4â
],
âpublicâ: false,
âextra_labels_addâ: [
âSTM32F469xGâ
],
âmacros_addâ: [
âSTM32F469xxâ
],
âdevice_has_addâ: [
âANALOGOUTâ,
âCANâ,
âTRNGâ
]
},
âMYTARGETâ: {
âinheritsâ: [
âMCU_STM32F469xGâ
],
âcomponents_addâ: [âBlueNRG_2â],
âfeaturesâ: [âBLEâ] ,
âextra_labels_addâ: [âCORDIOâ]
}
}
"
And I have in main.cpp
" BLE &ble = BLE::Instance();
ble.onEventsToProcess(schedule_ble_events);
BatteryDemo demo(ble, event_queue);
demo.start();
"
When i start the program, the mcu freeze.
Whatâs wrong ?
Thanks for advance.