SHCI_C2_BLE_Init Never Returns in BLE_Ota
I have a custom board which is based heavily on the P-NUCLEO-WB55.Nucleo. If I flash my board with a slightly modified version of BLE_Ota it will appear in ST BLE Sensor, at which point I can use it to flash my application. This works. After flashing the board will reboot and my application will run.

I've added the reboot characteristic to my application, and I copied the TAG_OTA_START and TAG_OTA_END lines from BLE_p2pServer_Ota to my linker file. I also added the appropriate advertisement settings, and the reboot code:

As a result, it shows up in ST BLE Sensor still and allows me to do a FUOTA update. However, if I try and upload the exact same file again the board will reset but the firmware update will fail (never goes beyond 0%).
I can debug my design and set a breakpoint for when ST BLE Sensor reboots it:

I am able to trace the execution all the way through the reset and back into the BLE_Ota code. I can see that the code is running, its stuck forever waiting for SHCI_C2_BLE_Init() to finish. At that point I have to power cycle the board and it will return to my code.

