STM32CubeExpansion_NFC5 Software migration problem
After migrating to Nordic-nrf52832 platform with STM32CubeExpansion_NFC5_V2.0.0, I can initialize successfully (all initialization processes can succeed), and fail to Polling Tag Detect.
Refer to the example completely for program running process
int main(void)
{
bsp_board_init(BSP_INIT_LEDS);
bsp_board_init(BSP_INIT_BUTTONS);
APP_ERROR_CHECK(NRF_LOG_INIT(NULL));
NRF_LOG_DEFAULT_BACKENDS_INIT();
timers_init();
spiInit();
NRF_LOG_INFO("SPI example started.");
if( true != demoIni() )
{
NRF_LOG_ERROR("************ rfal NG **************");
}
while (1)
{
demoCycle();
NRF_LOG_FLUSH();
// bsp_board_led_invert(BSP_BOARD_LED_0);
nrf_delay_ms(500);
}
}

Debug Log
Democycle() didn't crash, just couldn't get the card searching result.

