I tested the NFC transceiver APDU of the project nfc_uart is good. Then I ported the NFC code to the project ble_app_uart. When the board is simulated, the program pointer will enter the function app_error_fault_handler when placed on the reader. COM print only outputs printf start
The implementation of the main function:
Int main(void)
{
Bool erase_bonds;
// Initialize.
Uart_init();
Log_init();
Printf("\r\printf start\r\n"); //here can printf
Timers_init();
Buttons_leds_init(&erase_bonds);
/* Set up NFC */
Err_code = nfc_t4t_setup(nfc_callback, NULL);
APP_ERROR_CHECK(err_code);
/* Start sensing NFC field */
Err_code = nfc_t4t_emulation_start();
APP_ERROR_CHECK(err_code);
While(1);
}
who can help me?