Hi All!
I am trying to connect with static SSID & password to connect with the wififund_less2_exer2_solution .
Ncs 2.5.2 and vscode studio , Dk's are nrf52840Dk with nrf7002EK
I also tried wifi_provisioning example as well as used the andriod app to provision using BLE .
Both have the same response!
I entered the correct SSID and password.
Uart terminal output with error code is -134
and
cmakelist.txt
cmake_minimum_required(VERSION 3.20.0)
set(SHIELD nrf7002ek) #added
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(wifi_fundamentals)
target_sources(app PRIVATE src/main.c)
prj.conf
# # Copyright (c) 2022 Nordic Semiconductor ASA # # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause # # Wi-Fi # STEP 1.1 - Enable the Wi-Fi relevant configurations CONFIG_WIFI=y CONFIG_WIFI_NRF700X=y CONFIG_WPA_SUPP=y # STEP 2 - Configure the Wi-Fi credentials CONFIG_WIFI_CREDENTIALS=y # STEP 12.1 - Diasble static Wi-Fi network configuration CONFIG_WIFI_CREDENTIALS_STATIC=y CONFIG_WIFI_CREDENTIALS_STATIC_SSID="NETGEAR06" CONFIG_WIFI_CREDENTIALS_STATIC_PASSWORD="bxxxxxxxxx41" # Networking Management API # STEP 1.2 Enable the Network Management relevant configurations CONFIG_NET_MGMT=y CONFIG_NET_MGMT_EVENT=y CONFIG_NET_MGMT_EVENT_INFO=y CONFIG_NET_MGMT_EVENT_STACK_SIZE=4096 CONFIG_NET_CONNECTION_MANAGER=y CONFIG_WIFI_MGMT_EXT=y # STEP 12.3 Enable support for shell commands CONFIG_SHELL=y CONFIG_WIFI_CREDENTIALS_SHELL=y CONFIG_SHELL_STACK_SIZE=4096 # Logging CONFIG_LOG=y # DK library CONFIG_DK_LIBRARY=y # System settings CONFIG_NEWLIB_LIBC=y CONFIG_NEWLIB_LIBC_NANO=n # Networking CONFIG_NETWORKING=y CONFIG_NET_NATIVE=y CONFIG_NET_SOCKETS=y CONFIG_NET_L2_ETHERNET=y CONFIG_NET_IPV6=n CONFIG_NET_IPV4=y CONFIG_NET_DHCPV4=y # Memory CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096 CONFIG_MAIN_STACK_SIZE=4096 CONFIG_HEAP_MEM_POOL_SIZE=153600
Thanks & Regards,
Muhammad Usman