Skip to content

Commit

Permalink
Fix WIFI_EVENT (#2817)
Browse files Browse the repository at this point in the history
* Fix WIFI_EVENT

* Update esp-wifi/src/common_adapter/mod.rs

Co-authored-by: Dominic Fischer <14130965+Dominaezzz@users.noreply.github.com>

---------

Co-authored-by: Dominic Fischer <14130965+Dominaezzz@users.noreply.github.com>
  • Loading branch information
bugadani and Dominaezzz authored Dec 16, 2024
1 parent bc0bedd commit a12e7fe
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions esp-wifi/src/common_adapter/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use core::ptr::addr_of;

use esp_wifi_sys::include::timeval;
use hal::macros::ram;

Expand Down Expand Up @@ -201,10 +199,8 @@ pub unsafe extern "C" fn puts(s: *const u8) {
}

// #define ESP_EVENT_DEFINE_BASE(id) esp_event_base_t id = #id
static mut EVT: i8 = 0;
#[no_mangle]
#[allow(unused_unsafe)]
static mut WIFI_EVENT: esp_event_base_t = unsafe { addr_of!(EVT) };
static mut WIFI_EVENT: esp_event_base_t = c"WIFI_EVENT".as_ptr();

// stuff needed by wpa-supplicant
#[no_mangle]
Expand Down

0 comments on commit a12e7fe

Please sign in to comment.