7002 Initialization fails when using debugger

I have an app where I'm using the AP and STA mode of the 7002.  I'm running on a nrf5340.  

*** Booting nRF Connect SDK v3.5.99-ncs1-1-1-g6dc48c918694 ***
[00:00:12.620,269] <inf> main: Starting nrf7002_nrf5340_custom_cpuapp with CPU frequency: 64 MHz

When using the debugger, these are the first two messages I receive:

[00:00:12.376,525] <err> wifi_nrf: nrf_wifi_fmac_chg_vif_state: RPU is unresponsive for 10 sec
[00:00:12.376,586] <err> wifi_nrf: nrf_wifi_if_start_zep: nrf_wifi_fmac_chg_vif_state failed

However, if when 

CONFIG_WIFI_NRF700X_LOG_LEVEL_DBG=y
is set, everything works well.
When set to 
CONFIG_WIFI_NRF700X_LOG_LEVEL_INF=y
it still fails.
It would appear the time it takes to print the log messages, it allows something else to work.
If I don't use the debugger at all, it boots and runs fine.
 
I've verified that none of my main line code is executed.
I have these network settings set:
config NGBD_PROVISIONING_SERVER
    bool "Select to enable the http/dhcp servers and AP mode"
    select NRF700X_AP_MODE
    select WPA_SUPP_AP
    select WPA_SUPP
    select HTTP_SERVER
    select HTTP_PARSER_URL
    select HTTP_PARSER
    select NET_CONNECTION_MANAGER
    select SOFTAP_NGBD_DHCPV4_SERVER
    select NET_L2_WIFI_MGMT
    select NET_L2_WIFI_MGMT_EXT
    select NET_IPV4
    select NET_TCP
    select NET_UDP
    select NET_DHCPV4
    select NET_CONNECTION_MANAGER    
Thanks,
Gabriel
Parents Reply Children
  • Q1:  Yes, it happens on a range of boards.

    Q2:  I've been on NCS 2.6.1.  I've not upgraded for a number of reasons.

    Q3:  I don't think this is relevant as this hang-up occurs well before main.

    The reason you see the message after the startup message is that it tries for 10 seconds to start the Wi-Fi chip.  So the expiration and message show up in the time main runs, but the hang-up is right at power up.  I've verified this in the debugger.

  • Hi,

     

    GabrielDS said:
    Q1:  Yes, it happens on a range of boards.

    Do you see this issue if you use for instance the wifi/scan or wifi/sta sample?

    Does the issue only occur on custom hardware, or with the nRF7002dk as well?

     

    GabrielDS said:

    Q2:  I've been on NCS 2.6.1.  I've not upgraded for a number of reasons.

    Understand that you do not want to upgrade your SDK, but it would be good to get a generic overview of if this is a generic problem seen only on v2.6.x or if it also occurs on newer versions?

     

    I would recommend that you atleast keep your sources up-to-date with the latest minor release, which is v2.6.2.

     

    GabrielDS said:

    Q3:  I don't think this is relevant as this hang-up occurs well before main.

    The reason you see the message after the startup message is that it tries for 10 seconds to start the Wi-Fi chip.  So the expiration and message show up in the time main runs, but the hang-up is right at power up.  I've verified this in the debugger.

    Do you use a switch or similar to enable the main VDD_WIFI to the nRF7002? If yes, when is this done during initialization (SYS_INIT -> pre-kernel? What prio?) in your end? Do you have a delay afterwards to ensure that the nRF7002 is booted up?

     

    Kind regards,

    Håkon

Related