-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
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
espnet: WIP support for on-chip WiFi on an ESP32C3 #320
base: dev
Are you sure you want to change the base?
Conversation
Work in progress. Does not work yet. Some notes: - This requires some changes to TinyGo, look at the espnet branch. - The next step is probably defining all the functions in g_wifi_osi_funcs (see espnet.c). Right now it hangs in esp_wifi_init_internal, probably a NULL pointer dereference. - This is only for the ESP32-C3. This will require some work to work on other chips from Espressif.
Update: the function that's called is |
Is this dead? |
I'm not currently working on it. |
Just found https://github.com/espressif/esp-wireless-drivers-3rdparty (thanks @panbanda!) which we should use as a basis for this, instead of esp-idf. |
Are there any news on this? I have lots of "stock" ESP32/S2/S3 boards for testing and also some of my own ones. |
Slightly connected questions:
It seems like there's a lot of interest, not only in resolving the TinyGo issue, but even in finding workarounds for the interim. Cheers |
@sprive There is Nano RP2040 Connect which use |
See this PR for a new attempt, using much more suitable libraries: #650 |
Work in progress. Does not work yet.
Some notes:
g_wifi_osi_funcs
(see espnet.c). Right now it hangs inesp_wifi_init_internal
, probably a NULL pointer dereference.