I am using a BlueNRG-LP MC355 SoC. When connected to my debugger, I can call NVIC_SystemReset() just fine. However, if I disconnect the debugger, the device hard faults on reset.uint8_t ret = BLE_STATUS_SUCCESS;
uint16_t service_handle, dev_name_...
I am designing some firmware for a BlueNRG LP (355MC) based device with several sensors. At certain points in the device's processing/lifecycle, I need to turn off the BLE and/or radio to conserve power. In fact, I only need the device to have BLE co...
@Sebastien DENOUAL Do you have any thoughts on this thread? I want to make sure the BLE chip isn't consuming power when I don't need it. Specifically, I want to be able to activate the BLE, for example, on the press of a button... so, while the butt...
I am in a similar situation...How are you entering DEEPSTOP?I configure the following: void main(void)
{
WakeupSourceConfig_TypeDef wakeupIO;
PowerSaveLevels stopLevel;
int err;
/* System initialization function */
if (SystemIni...
@Winfred LU If aci_gap_set_advertising_enable() is disabled, do I also need to disable the wakeup generated by the BLE chip to the CPU?In the RM0480-Rev2 - Radio Controller manual, it mentions BLUE_SLEEP_REQUEST_MODE and WAKEUP_BLE_IRQ_ENABLE... do ...