We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a bug in wifi802_11.cpp, line 136:
wifi802_11.cpp
The enumerator ESP_IF_WIFI_STA is invalid. It should be: WIFI_IF_STA.
ESP_IF_WIFI_STA
WIFI_IF_STA
I don't have my own compile logs saved, so I'm lazy and refers to the second error in this post in arttupii's repo:
.pio/libdeps/esp32doit-devkit-v1_COM4/EspNowFloodingMesh/wifi802_11.cpp: In function 'void wifi_802_11_send(const uint8_t*, int)': .pio/libdeps/esp32doit-devkit-v1_COM4/EspNowFloodingMesh/wifi802_11.cpp:125:78: error: cannot convert 'esp_interface_t' to 'wifi_interface_t' esp_wifi_80211_tx(ESP_IF_WIFI_STA, buf, sizeof(raw_HEADER) + len+ 2, true); ^ In file included from .pio/libdeps/esp32doit-devkit-v1_COM4/EspNowFloodingMesh/wifi802_11.cpp:4: C:/Users/marco/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32/include/esp_wifi/include/esp_wifi.h:984:46: note: initializing argument 1 of 'esp_err_t esp_wifi_80211_tx(wifi_interface_t, const void*, int, bool)' esp_err_t esp_wifi_80211_tx(wifi_interface_t ifx, const void *buffer, int len, bool en_sys_seq);
The text was updated successfully, but these errors were encountered:
I'll take a look later, quite busy at work now.
Sorry, something went wrong.
No branches or pull requests
There is a bug in
wifi802_11.cpp
, line 136:The enumerator
ESP_IF_WIFI_STA
is invalid. It should be:WIFI_IF_STA
.I don't have my own compile logs saved, so I'm lazy and refers to the second error in this post in arttupii's repo:
The text was updated successfully, but these errors were encountered: