Search found 12 matches

by A001FF
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: 8904

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, &ethaddr)
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 ...
by A001FF
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: 1703

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 ...
by A001FF
Wed Apr 27, 2022 5:14 pm
Forum: General Discussion
Topic: Wifi not working after ESP-now tests.
Replies: 1
Views: 1684

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 ...
by A001FF
Wed Apr 27, 2022 10:57 am
Forum: General Discussion
Topic: Wifi not working after ESP-now tests.
Replies: 1
Views: 1684

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 ...
by A001FF
Wed Apr 20, 2022 1:51 pm
Forum: General Discussion
Topic: Software or Hardware 9 Bit
Replies: 9
Views: 6896

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)
by A001FF
Wed Apr 20, 2022 1:17 pm
Forum: General Discussion
Topic: abort() was called at PC 0x... on core 1
Replies: 5
Views: 26060

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).
by A001FF
Tue Apr 19, 2022 10:49 am
Forum: General Discussion
Topic: abort() was called at PC 0x... on core 1
Replies: 5
Views: 26060

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...
by A001FF
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: 2299

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.

Go to advanced search