Search found 3 matches
- Wed Apr 10, 2024 8:50 am
- Forum: ESP-AT
- Topic: Flashing esp-at firmware via esp-prog
- Replies: 1
- Views: 3081
Flashing esp-at firmware via esp-prog
I try to flash firmware on esp32 wroom 32u via esp-prog, to do this i use openocd -s ~/.espressif/tools/openocd-esp32/share/openocd/scripts -f interface/ftdi/esp32_devkitj_v1.cfg -f board/esp-wroom-32.cfg -c "program_esp esp-at.bin 0x100000 verify exit" and i use it for every binary needed, so bootl...
- Mon Mar 04, 2024 12:56 pm
- Forum: General Discussion
- Topic: ZephyrRTOS - esp32c3 can't connect to WiFi when there is any security
- Replies: 0
- Views: 1496
ZephyrRTOS - esp32c3 can't connect to WiFi when there is any security
As in the subject, I can't connect to any network that uses e.g. WPA2, when there is network without password it connects everytime. connectTo method: bool WifiDriver::connectTo(const SSIDstring& ssid, const PSKstring& password) { if (k_sem_count_get(&connectionSemaphore) > 0) { return false; } strn...
- Wed Nov 08, 2023 11:43 am
- Forum: General Discussion
- Topic: ESP-AT fails with HTTP POST
- Replies: 0
- Views: 563
ESP-AT fails with HTTP POST
Hi guys, I work on http client using esp-at on my esp32-wroom-32u, i encountered problem, when i connect to the server and send this command: AT+HTTPCLIENT=3,1,"http://192.168.31.31:8080/","","",1,"key=value" simple python server created with command python3 -m http.server -b 192.168.31.31 8080 i ge...