Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs
This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Is I2C0 incompatible with SPIM3 in SDK14,S140?

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?

Related