User Activity

I have a BlueNRG-2 set up alongside another processor with a uart used to communicate between the two. The idea is that the second processor tells the blueNRG what friendly name to use before starting to advertise. Ideally, I want the blueNRG to save...
My device init looks like this: ret = aci_gap_init(GAP_PERIPHERAL_ROLE, 0,0x08, &service_handle, &dev_name_char_handle, &appearance_char_handle); if(ret != BLE_STATUS_SUCCESS) { //PRINTF("GAP_Init failed: 0x%02x\n", ret); return ret; } r...
I'm trying to wake my STM32L471 up from STOP2 sleep mode using the RTC Alarm. I successfully get it to sleep, and then I'm using the code from the STMCube Example projects (\STM32Cube_FW_L0_V1.11.0) to try to wake it, but not succeeding. Is anyone ab...