Mbed and BLUENRG-232N

Hello,
What i need to start with mbed and BLUENRG-232N ?
What libraries ?
Somebody uses it ?
Thanks for advance. :grinning:

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.