Yes Rudi !
You're right.
Many thanks again.
Search found 12 matches
- Wed Mar 08, 2023 12:39 pm
- Forum: General Discussion
- Topic: How to get the gateway (router) MAC address when i using eth connection ?
- Replies: 7
- Views: 7325
- Wed Mar 08, 2023 12:13 pm
- Forum: General Discussion
- Topic: How to get the gateway (router) MAC address when i using eth connection ?
- Replies: 7
- Views: 7325
Re: How to get the gateway (router) MAC address when i using eth connection ?
many thanks rudi, but I using Arduino IDE, and with etharp_get_entry(index_entry, &ip, &netif, ðaddr) ARP table is empty, but ethernet is working. LE: it's working ! I have entrys in ARP table. But is need to I ping esp32 from network. I thought that MAC router appears in the ARP table after the ...
- Tue Mar 07, 2023 5:49 pm
- Forum: General Discussion
- Topic: How to get the gateway (router) MAC address when i using eth connection ?
- Replies: 7
- Views: 7325
How to get the gateway (router) MAC address when i using eth connection ?
or, it's possible to read arp table ?
- Sun Oct 23, 2022 12:47 pm
- Forum: General Discussion
- Topic: New firmware is ok , but old firmware is booting after power off/on.
- Replies: 1
- Views: 1430
New firmware is ok , but old firmware is booting after power off/on.
Hi, I used: https://github.com/espressif/arduino-esp32/tree/master/libraries/Update/examples for http firmware udate. "OTA done!" "Update successfully completed. Rebooting." after ESP.restart() line, ESP rebooting Ok with the new firmware. But after power off/on the old firmware is executed :) Where...
- Wed Apr 27, 2022 5:14 pm
- Forum: General Discussion
- Topic: Wifi not working after ESP-now tests.
- Replies: 1
- Views: 1410
Re: Wifi not working after ESP-now tests.
I almost found the answer. I launched "esptool erase_flash" and the Wifi works ok now! And I repeated the experiment several times. The line that blocking WiFi is: esp_wifi_set_protocol (ESP_IF_WIFI_STA, WIFI_PROTOCOL_LR); This "WIFI_PROTOCOL_LR" is the problem. But ESP-Now works normally in tests w...
- Wed Apr 27, 2022 10:57 am
- Forum: General Discussion
- Topic: Wifi not working after ESP-now tests.
- Replies: 1
- Views: 1410
Wifi not working after ESP-now tests.
I did some ESP-Now tests with two ESP WROOM-32. And the communication went well. After these tests, I can no longer use classic WiFi. None of the modules can connect to an AP or set as an AP. Strange, I can see the APs in the area with WiFi scanning using these ESPs. But when I try to connect I get ...
- Wed Apr 20, 2022 1:51 pm
- Forum: General Discussion
- Topic: Software or Hardware 9 Bit
- Replies: 9
- Views: 5678
Re: Software or Hardware 9 Bit
I think it is possible to receive or send 9 bytes using the parity bit.
SERIAL_8E1
But is it possible to set the parity bit manually on ESP UART ?
(parity = Mark / Space)
SERIAL_8E1
But is it possible to set the parity bit manually on ESP UART ?
(parity = Mark / Space)
- Wed Apr 20, 2022 1:17 pm
- Forum: General Discussion
- Topic: abort() was called at PC 0x... on core 1
- Replies: 5
- Views: 20841
Re: abort() was called at PC 0x... on core 1
ESP_Sprite many, many thanks !
Of corse, overflow
len=512;
buf = (char *)malloc(len);
..
buf[len]=0x00; <--
...
free(buf); <-- that is the line reported by tools EspExceptionDecoder (interesting).
Of corse, overflow
len=512;
buf = (char *)malloc(len);
..
buf[len]=0x00; <--
...
free(buf); <-- that is the line reported by tools EspExceptionDecoder (interesting).
- Tue Apr 19, 2022 10:49 am
- Forum: General Discussion
- Topic: abort() was called at PC 0x... on core 1
- Replies: 5
- Views: 20841
abort() was called at PC 0x... on core 1
Hi,
How can I find where in the source program is the line that generates the error?
CORRUPT HEAP: Bad tail at 0x3ffb8695. Expected 0xbaad5678 got 0xbaad560d
abort() was called at PC 0x400832fd on core 1
Backtrace: 0x40084e80:0x3ffb1af0 ...
Rebooting...
How can I find where in the source program is the line that generates the error?
CORRUPT HEAP: Bad tail at 0x3ffb8695. Expected 0xbaad5678 got 0xbaad560d
abort() was called at PC 0x400832fd on core 1
Backtrace: 0x40084e80:0x3ffb1af0 ...
Rebooting...
- Wed Apr 06, 2022 4:48 pm
- Forum: General Discussion
- Topic: espnow - does OnDataSent guarante packet to be fully received in unicast
- Replies: 1
- Views: 1958
Re: espnow - does OnDataSent guarante packet to be fully received in unicast
OnDataSent , "status" parameter == ESP_NOW_SEND_SUCCESS means the pair answered with ACK.