This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nrf9160 can't jump (Secure Boot: prepare to jump to Non-Secure image)

Hello,

I have a custom nrf9160 device which requires  

device stops at:

'Secure Boot: prepare to jump to Non-Secure image'

if I use this the following prj.conf:

CONFIG_BSD_LIBRARY=y
CONFIG_BSD_LIBRARY_TRACE_ENABLED=y
CONFIG_GPIO=n
CONFIG_STDOUT_CONSOLE=y
CONFIG_AT_HOST_LIBRARY=y
CONFIG_TEST_RANDOM_GENERATOR=y
CONFIG_NETWORKING=y
CONFIG_NET_BUF_USER_DATA_SIZE=1
CONFIG_NET_SOCKETS_OFFLOAD=y
CONFIG_NET_SOCKETS=y
CONFIG_NET_SOCKETS_POSIX_NAMES=y
CONFIG_NET_RAW_MODE=y
CONFIG_LOG=n
CONFIG_LOG_DEFAULT_LEVEL=4
CONFIG_HEAP_MEM_POOL_SIZE=1024

#Custom config
CONFIG_SERIAL=y
CONFIG_TRUSTED_EXECUTION_NONSECURE=y
CONFIG_UART_INTERRUPT_DRIVEN=y
CONFIG_UART_0_NRF_UARTE=y
CONFIG_UART_1_NRF_UARTE=y

# SPI
CONFIG_SPI=y
CONFIG_SPI_2=y
CONFIG_SPI_2_NRF_SPIM=y
CONFIG_SPI_2=y
CONFIG_SPI_NRFX=y


# Enable I2C
CONFIG_I2C=y
CONFIG_I2C_NRFX=y
CONFIG_I2C_3=y
CONFIG_I2C_3_NRF_TWIM=y
CONFIG_I2C_INIT_PRIORITY=60

if I use this prj.conf (delete everything before '#Custom config'). Everything works as expected but I need MQTT.

#Custom config
CONFIG_SERIAL=y
CONFIG_TRUSTED_EXECUTION_NONSECURE=y
CONFIG_UART_INTERRUPT_DRIVEN=y
CONFIG_UART_0_NRF_UARTE=y
CONFIG_UART_1_NRF_UARTE=y

# SPI
CONFIG_SPI=y
CONFIG_SPI_2=y
CONFIG_SPI_2_NRF_SPIM=y
CONFIG_SPI_2=y 
CONFIG_SPI_NRFX=y


# Enable I2C
CONFIG_I2C=y
CONFIG_I2C_NRFX=y
CONFIG_I2C_3=y
CONFIG_I2C_3_NRF_TWIM=y
CONFIG_I2C_INIT_PRIORITY=60

I assume that by adding CONFIGs to prj.conf that I am creating conflicts between UART instances but I dont know if that is the case.

I am using:

UART 0 for console (debug)

UART 1 connected to uart device.

SPI 2 used for display.

I2C 3 used for i2c sensors and drivers.

Really the core of my issue is that I don't know how nrf9160 communicates with its built in modem. Does is require UART? will adding UART 2 create conflict with SPI 2? Thinking

Thank you

Parents Reply Children
No Data
Related