I'm moving from SDK 1.5.1 to 1.6.1 and when I recreate the project using the new version I get;
C:/Users/randall.philipson/kodiak_core_iot_zephyr/core_iot/prj.conf:88: warning: attempt to assign the value 'y' to the undefined symbol SPI_3
My proj.conf has;
# SPI
CONFIG_SPI=y
CONFIG_SPI_3=y
#CONFIG_SPI_3_NRF_SPIM=y
#CONFIG_SPI_3=y
#CONFIG_SPI_NRFX=y
I'm using a custom board description. The common .dts file has;
&spi3 {
compatible = "nordic,nrf-spim";
status = "okay";
sck-pin = <19>;
mosi-pin = <18>;
miso-pin = <17>;
cs-gpios = <&gpio0 30 GPIO_ACTIVE_LOW>, <&gpio0 23 GPIO_ACTIVE_LOW>,
<&gpio0 22 GPIO_ACTIVE_LOW>, <&gpio0 21 GPIO_ACTIVE_LOW>,
<&gpio0 20 GPIO_ACTIVE_LOW>, <&gpio0 0 GPIO_ACTIVE_LOW>;
};
Just to be sure, I recreated using 1.5.1 and it generates fine.