From 018bccc62ea893c590376593e0a3937729f91245 Mon Sep 17 00:00:00 2001 From: kurvaSai <111514131+kurvaSai@users.noreply.github.com> Date: Thu, 13 Oct 2022 19:41:41 +0530 Subject: [PATCH] wf200 ipv4 hardfault fix (#23058) --- examples/platform/efr32/wf200/host_if.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platform/efr32/wf200/host_if.cpp b/examples/platform/efr32/wf200/host_if.cpp index 58840fc724639c..8015a0cb7a1caa 100644 --- a/examples/platform/efr32/wf200/host_if.cpp +++ b/examples/platform/efr32/wf200/host_if.cpp @@ -565,7 +565,7 @@ static void sl_wfx_ap_client_rejected_callback(uint32_t status, uint8_t * mac) if ((now = xTaskGetTickCount()) > (last_dhcp_poll + pdMS_TO_TICKS(250))) { #if (CHIP_DEVICE_CONFIG_ENABLE_IPV4) - uint8_t dhcp_state = dhcpclient_poll(&sta_netif); + uint8_t dhcp_state = dhcpclient_poll(sta_netif); if ((dhcp_state == DHCP_ADDRESS_ASSIGNED) && !hasNotifiedIPV4) {