Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions drivers/wifi/nrf700x/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -781,3 +781,8 @@ config NRF_WIFI_RX_STBC_HT
default y
help
Enable STBC (Space-Time Block Coding) for HT mode.

config NRF_WIFI_DYNAMIC_BANDWIDTH_SIGNALLING
bool "Dynamic bandwidth signalling for Wi-Fi"
help
This option enables support for dynamic bandwidth signalling.
2 changes: 1 addition & 1 deletion modules/hostap/src/supp_events.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ int send_wifi_mgmt_conn_event(void *ctx, int status_code)
int send_wifi_mgmt_disc_event(void *ctx, int reason_code)
{
struct wpa_supplicant *wpa_s = ctx;
int status = wpas_to_wifi_mgmt_diconn_status(reason_code);
int status = reason_code;
enum net_event_wifi_cmd event;

if (!wpa_s || !wpa_s->current_ssid) {
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: v2.6.4
revision: pull/1772/head
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading