Search found 47 matches

by chibill
Fri Nov 26, 2021 6:02 pm
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20011

Re: WPA2 Enterprise

Possibly, I have to pull the latest branch and make sure it still works. Also I still haven't really gotten it to be "safe" yet. Having issues figuring out how to do the error checking stuff.
by chibill
Tue Jul 27, 2021 7:17 pm
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20011

Re: WPA2 Enterprise

I can provide a binary built with WPA2 support and also some information on how to use it. I am still working on figuring out how to properly make a PR for Micropython to get it into the main repo.
by chibill
Sat May 29, 2021 10:57 pm
Forum: Development of MicroPython
Topic: Question about adding new functions to port specific modules.
Replies: 2
Views: 2082

Question about adding new functions to port specific modules.

I am wondering where inside a port specific module should I add new functions for example, I wish to add a few new functions to the esp32 modnetwork.c file to add in WPA2 EAP networking support, where in the file would it be best at add these? After the last function declaration that is accessible f...
by chibill
Fri May 21, 2021 7:14 pm
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20011

Re: WPA2 Enterprise

Its #micropython on freenode. Although that might change at some point.

I am going to work on throwing together a PR now that I have had more experience with working on Micropython's internals in my free time.
by chibill
Fri May 21, 2021 11:36 am
Forum: ESP32 boards
Topic: WPA2 Enterprise
Replies: 22
Views: 20011

Re: WPA2 Enterprise

Yep, probably during the move to CMake it was removed. (I asked around in the IRC last night and got the answer.)
by chibill
Fri May 21, 2021 2:01 am
Forum: ESP32 boards
Topic: Support for WPA2 EAP networks.
Replies: 7
Views: 5634

Re: Support for WPA2 EAP networks.

Okay so I found that for some reason I can't include "esp_wpa2.h" which has to be included for this to work. For some reason CMake can't find the file thats inside of the ESP-IDF.

I am going to hunt around and figure it out, I will even move those files to the build path maybe if I have to.
by chibill
Mon May 17, 2021 7:51 pm
Forum: ESP32 boards
Topic: User C Module for limited FabGL VGA support!
Replies: 0
Views: 1567

User C Module for limited FabGL VGA support!

I have been working on a User C Module for FabGL. http://www.fabglib.org/index.html I have had some success in this as I can now draw Text on a VGA screen from python as well as set pixel colors on the screen. :) I am slowly working on building out limited implementation for other parts of it other ...
by chibill
Mon Apr 05, 2021 4:39 pm
Forum: ESP32 boards
Topic: Can't build user C modules with new versions of Micropython?
Replies: 6
Views: 2994

Re: Can't build user C modules with new versions of Micropython?

Found out the issue, turns out what every build system change happened also changed the starting path for relative paths in that C modules list to no longer start where the command is ran but in one folder higher, unlike how it was before. Now time to do battle with trying to get CPP templates playi...
by chibill
Fri Apr 02, 2021 2:03 am
Forum: ESP32 boards
Topic: Can't build user C modules with new versions of Micropython?
Replies: 6
Views: 2994

Re: Can't build user C modules with new versions of Micropython?

Also even with the latest pushes as of April 1st I am still unable to build user c modules, can't even build the examples, instead I get a cmake error about being unable to load the cmake files from the examples folders.