Recently,I use the SDK14 to develop the project,the initial project is in the content "SDK14/examples/peripheral/twi_scanner/pca10056",
Then and the spi example in the content of "SDK14/examples/peripheral/spi/pca10056",
I make some changes
APP_ERROR_CHECK(nrf_drv_spi_init(&spi,&spi_configs,spi_event_handler,NULL))
changge to
APP_ERROR_CHECK(nrf_drv_spi_init(&spi,&spi_config,NULL,NULL));
When I add I2C0 and SPI1、SPI2,the program can run smoothly,
However,when I add I2C0 and SPIM3,the program stop run,it would stop at the function of "void app_error_fault_handler(....)"
Why this situation happened?Is I2C0 incompatible with SPIM3?