kmihaylov
kmihaylov
My latest boards seem to work relatively stable. It looks like WiFi connection states are properly announced. Connection issues can be handled in the app. So I'm closing this issue....
1st I warn that I do not use the example directly. Despite that I must say I only copy-pasted the code into a new OTA class. Probably it is about...
> #include "ota.h" > #include "application.h" > #include > > rBootHttpUpdate* otaUpdater = 0; > > OTA::OTA() { debugf("OTA init"); } > OTA::~OTA() {} > > void OTA::initCommand() { >...
Hello slaff, Since I'm building the project on another machine (I'm flashing it on my windows machine), I had to track exactly what flashinit does to perform it. Actually I'm...
Hm, some answers here are missing. Anyway, I'm watching esp-idf's function ```esp_wifi_stop()```. How do I properly call it from within Sming?
I'm answering myself. the ```esp_wifi_stop()``` and ```esp_wifi_deinit()``` functions can easily be accessed once the user adds the ```#include ``` header to the application.cpp file. I found that ```System.restart()``` in the...
Still trying to figure out why the system panics. I was quick to say the Access Point feature of the Basic_Wifi sample was the reason for the panic. Later I...
@mikee47 My Esp32 code used to do ```WifiStation.enable(true)``` before ```System.onReady()```. This way the Wifi is working. I found that if I try to enable the wifi with ```System.onReady```, then it...
I set the ```BOOTLOADER_LOG_LEVEL``` to Debug. However now some overlap occurs: ``` $ make flash Basic_Blink: Invoking 'flash' for Esp32/esp32 (debug) architecture ninja: Entering directory `/home/opt/Sming/Sming/out/Esp32/esp32/debug/build/esp32/sdk' [1/3] Performing build step...
Pretty good bug to bring me the knowledge to make arbitrary partition tables and esp-idf specific options! I managed to make custom partition table and I learned how to change...