Search found 8 matches

by dan76
Mon Jan 24, 2022 2:56 pm
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

[SOLVED] : Wifi AP crash when activated (ESP32 DEVKIT V1 board)

Finally
i get the solution. I had seen that a guy is waiting 1.5 s after boot to activate Wifi and his comment is for 5V line stabilisation.
I have inserted a time.sleep(5) before wlan.active(True)
:D
IT'S WORK
by dan76
Sat Sep 18, 2021 8:12 am
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

Re: Wifi AP crash when activated (ESP32 DEVKIT V1 board)

From my point of view it's not related to Thonny as with IDE Arduino ESP32 i get Wifi freeze
by dan76
Sat Sep 18, 2021 7:34 am
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

Re: Wifi AP crash when activated (ESP32 DEVKIT V1 board)

With micropython i am using Thonny connected to ESP32 board with USB cable
by dan76
Sat Sep 18, 2021 6:54 am
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

Re: Wifi AP crash when activated (ESP32 DEVKIT V1 board)

I have tested wifi connexion with esp32 Arduino IDE Using Wifi library #include <WiFi.h> void setup() { WiFi.begin("myNetwork","myPassword"); serial.print(WiFi.status()); } void loop() Serial.print("."); } I can see my ESP32 board connected to myNetwork, but ESP32 never reaches the print instruction...
by dan76
Fri Sep 17, 2021 8:25 pm
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

Re: Wifi AP crash when activated (ESP32 DEVKIT V1 board)

I have tested STA with

import network
wlan= network.WLAN(network.STA_IF)
wlan.active(True)


Same error message
So in AP and STA mode wlan.active(True) instruction do crash

Tomorrow i will test Wifi using C code to see if DEVKIT V1 board Wifi works
by dan76
Fri Sep 17, 2021 4:33 pm
Forum: ESP32 boards
Topic: Wifi AP crash when activated (ESP32 DEVKIT V1 board)
Replies: 11
Views: 10137

Wifi AP crash when activated (ESP32 DEVKIT V1 board)

Good evening With this simple code with ESP32 DEVKIT V1 board ( 2 units tested) with esp32-20210902-v1.17.bin import network wlan= network.WLAN(network.AP_IF) wlan.config(essid='MyESP', password='12345678') wlan.active(True) In console the following message appears : Connection lost(EOF) Use Stop/Re...
by dan76
Tue May 11, 2021 5:38 pm
Forum: ESP32 boards
Topic: LILYGO TTGO T-Call ESP32
Replies: 3
Views: 3795

Re: LILYGO TTGO T-Call ESP32

I had seen that SIM800L circuit requires a lot of current during initialization.

Is your battery delivering enough current ?

See https://github.com/Xinyuan-LilyGO/LilyG ... /issues/11

Kindly
Daniel
by dan76
Tue May 11, 2021 3:40 pm
Forum: ESP32 boards
Topic: multi-threading question
Replies: 19
Views: 14486

Re: multi-threading question

Hi folks I am trying to work around the lack of Bluetooth Classic in ESP32 Micropython I know that the answer would be no with 99% probability Nevertheless I would like to know if it is possible to execute a task taking into account the Bluetooth Classic RTOS in C++ using IDF 3.x on core 1 in parall...