2025-12-17 5:10 AM
Greetings,
I'm trying to run an application using X-CUBE-ST67W61, but I'm encountering a problem at this line in w61_at_common.c:
int32_t W61_AT_ModemInit(W61_Object_t *Obj)
{
(...)
xReturned = xSemaphoreTake(mdm->sem_if_ready, pdMS_TO_TICKS(4000));
(...)
}everytime, xReturned equals 0, which means that sem_if_ready is not received.
My setup consists of STM32N6570-DK with X-NUCLEO-67W61M1, and the code I'm trying to run is mostly ble_p2p_server app from X-CUBE-ST67W61.
Some of the SPI communication starts, as seen below:
but these are the only signals that are appearing.