Native SDK • Wifi connect problem: AT firmware works, RTOS SDK don't
Hi all, hope you are doing well.Having some WiFi difficulties with a custom ESP8266 board. Banging my head for two days now. Hope someone can point me in the right direction.I am trying to connect to...
View ArticleNative SDK • Re: Wifi does not work after light sleep
You can follow the instructions given in the answer here: https://stackoverflow.com/questions/705 ... ight-sleepStatistics: Posted by rooppoorali — Sun Aug 21, 2022 12:41 am
View ArticleNative SDK • Re: Wifi connect problem: AT firmware works, RTOS SDK don't
Looks like a similar (though not the same) problem: https://stackoverflow.com/questions/703 ... ifi-init-lStatistics: Posted by rooppoorali — Thu Aug 25, 2022 10:21 am
View ArticleNative SDK • Re: Running CPP code using ESP8266_RTOS_SDK
Anyone have any ideas ? is anyone successfully using ESP8266_RTOS_SDK with c++ ?Statistics: Posted by jbsimon000 — Thu Sep 15, 2022 4:35 pm
View ArticleNative SDK • slow tcp on esp8266
Hey,I have an app to run a power switch, which I could update via OTA until recently.Written in C++ against the rtos sdk.Suddenly (after build system updates?) I find that the OTA doesn't work any...
View ArticleNative SDK • Re: slow tcp on esp8266
Solved by copying a file "sdkconfig.works" to the regular one.This habit has saved my ass more than once before.Not clear to me which of the settings below can cause this.Some of them (number of...
View ArticleNative SDK • WolfSSL (from WolfSSL.com) error
Hey,I have a simple app which runs into memory issues (with esp8266) so I'm changing from mbedtls to WolfSSL, the one from wolfssl.com .I consistently run on this type of error with a cut down sample...
View ArticleNative SDK • Cant build esp-at
Hello everyone!I'm trying to build esp-at. I'm doing everything as said here:https://docs.espressif.com/projects/esp ... ct-esp8266But when i make ./build.py build got an error:./build.py...
View ArticleNative SDK • Re: Cant build esp-at
Problem was solved. I reinstalled SDK and all requirements and it helped.Topic now can be closed.Statistics: Posted by Alex Lux — Wed Nov 16, 2022 3:37 am
View ArticleNative SDK • ESP8266 : NonOS SDK API system_phy_set_tpw_via_vdd33
Hi everyone!This function's description is brief so I need more infomation about how to use this api. I used it with param range 1900 to 3300 and i surprised the result. Param 1900 make esp has more...
View ArticleNative SDK • read file from SPIFFS return null
hello, i am trying to read a file from the spiffs image i have builìt and uploaded to esp.Whatever file i try to open, when i read it i get null.Code: struct stat st; stat("/spiffs/index.html",...
View ArticleNative SDK • How to set NONOS system on Windows (Msys)?
Hi,I noticed an interesting project on the Github that uses ESP8266 and Non-os code.The project documentation states:qz]Install ESP8266 gcc. See https://docs.espressif.com/projects/esp ......
View ArticleNative SDK • Re: connect ESP8266 in station mode (RTOS-SDK)
you can check in github esp8266 rtos examples there´s a working sample station mode. good luck !Statistics: Posted by oswe — Wed Mar 29, 2023 6:22 pm
View ArticleNative SDK • Re: How to set NONOS system on Windows (Msys)?
You really need to point us to the project you're trying to compileStatistics: Posted by davydnorris — Thu Mar 30, 2023 5:58 pm
View ArticleNative SDK • I2c oled ssd1306
hello guys , anyone had success implementing i2c with esp8266 RTOS ? im almost there....screen turned on showing garbage at least... ive seen some approach from 6 years ago implementing bit by bit and...
View ArticleNative SDK • Re: ESP8266_RTOS_SDK I2C example causing abort()
for me , solved changing the priority of the task. from 10 to 5 if I recall correctly that stopped from resetting itself. i dont know why...Statistics: Posted by oswe — Thu Apr 13, 2023 12:50 pm
View ArticleNative SDK • Re: I2c oled ssd1306
have you tried this library?https://github.com/Fonger/ESP8266-RTOS-SSD1306Here is also a video that may help:https://www.youtube.com/watch?v=4P7pMSuDd9EStatistics: Posted by rooppoorali — Fri Apr 14,...
View ArticleNative SDK • wifi RSSI ?
is there a function hidden somewhere , or a value in some struct showing RSSI level or similar from wifi connection ????in Arguino you can check its value but in RTOS ive never seen, so I decided to...
View ArticleNative SDK • Re: wifi RSSI ?
In the Espressif IDF (IoT Development Framework) Wi-Fi library, the function esp_wifi_sta_get_ap_info() can be used to retrieve the RSSI value for the current access point, among other...
View ArticleNative SDK • set channel in sleep mode, fail and exit
Hello,I have been scouring the internet and have came up empty handed. I have an ESP-01 where I made a project to read a temp sensor and post to my mqtt broker. The program worked great after some...
View Article