Can not init BLE stack on CPU2
Hi, I want to develop a BLE application on the STM32WB55, but I'm having trouble initializing the BLE stack on CPU2. I call the functions to initialize it (like in the Heart Rate Monitor example), and then I receive an RX_IRQ from the IPCC where incoming data from CPU2 is checked, but currently the list is empty. Where is the problem? I received the IRQ, but there is no data in the list. In that case the init can not be finished.
Probably I missed something. FUS and BLE stack are activated via CubeMX.
Thank you for help.

oid HW_IPCC_SYS_EvtNot( void )
{
TL_EvtPacket_t *p_evt;
while(LST_is_empty(&SystemEvtQueue) == FALSE)
{
LST_remove_head (&SystemEvtQueue, (tListNode **)&p_evt);
OutputDbgTrace(TL_MB_SYS_ASYNCH_EVT, (uint8_t*)p_evt );
SYS_EVT_IoBusCallBackFunction( p_evt );
}
return;
}
