Search found 3 matches

by Herve
Wed Jun 05, 2019 9:50 am
Forum: General Discussion and Questions
Topic: Ad-Hoc network - ESP32
Replies: 0
Views: 2151

Ad-Hoc network - ESP32

Hi everybody.

I now it is possible to configure wifi in station mode (STA) or access point (AP).
My question is simple : is it possible to configure my ESP32 in ad-hoc mode ?

Thanks all.
by Herve
Wed Jun 05, 2019 8:20 am
Forum: Development of MicroPython
Topic: MicroPython external C modules
Replies: 3
Views: 2531

Re: MicroPython external C modules

I found the solution. The command : " make USER_C_MODULES=../../../modules CFLAGS_EXTRA=-DMODULE_EXAMPLE_ENABLED=1 all " dosen't work. You need to add " #define MODULE_EXAMPLE_ENABLED (1) " to the mpconfigport.h and do " " make USER_C_MODULES=../../../modules all" and now it's work !! Thanks for you...
by Herve
Tue Jun 04, 2019 3:53 pm
Forum: Development of MicroPython
Topic: MicroPython external C modules
Replies: 3
Views: 2531

MicroPython external C modules

Hi everybody. I have an esp32 and i would like to add external C modules. I followed this instructions : https://docs.micropython.org/en/latest/develop/cmodules.html The compilation work but it's impossible to import the module in the prompt microPython. >>> import example Traceback (most recent cal...