NCS and Atmel WINC1500

Hello everyone!

Based on this  Atmel winc 1500 with NCS , I wanted to try also myself to interface my custom board based on nRF5340 with a WINC1500.

I'm building for nrf5340cpuapp and the devicetree overlay is the following 

0042.nrf5340dk_nrf5340_cpuapp.overlay

As in the above-mentioned issue, I edited the prj.config accordingly and it builds correctly.

The problem is that the following lines

CONFIG_WIFI_WINC1500=y
CONFIG_WIFI_WINC1500_REGION_EUROPE=y
shows a yellow squiggle and a comment saying "In build: n". Hovering on them it appears as follows

- CONFIG_WIFI_WINC1500 was assigned the value y, but got the value n. Missing dependencies:
DT_HAS_ATMEL_WINC1500_ENABLED
- CONFIG_WIFI_WINC1500_REGION_EUROPE was assigned the value y, but got the value n. Missing dependencies:
<choice>

I'm using NCS 2.2.0. I have no clue on how to solve this because there is little to zero documentation about this particular interface (WINC and NCS)

Parents Reply
  • Good to know, I also was able to make it work.

    By adding the following lines 

    CONFIG_SHELL_BACKEND_RTT=y
    CONFIG_UART_CONSOLE=n
    CONFIG_USE_SEGGER_RTT=y
    CONFIG_RTT_CONSOLE=y
    CONFIG_LOG=y


    I am also able to interact with the Wifi Shell via RTT in my custom board.

    Now, the wifi scan command results in

      

    In the meanwhile that I'll debug the correct wiring of the WINC1500 module, is there a way to see deeper level of debug (SPI for example)

Children
Related