Hi
I have setup communication between two ESP32 S3 boards. and I am sending an array of size 10 from one to another:
uint8_t Test[10] = {0,1,2,3,4,5,6,7,8,9};
I do not get any error and the code builds properly and connects to the other board imminently but sometimes I get garbage output on the receiver board every a few seconds or so and and the interval between garbage out put is also random:
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 72,96,108,3,1,1,45,26,45,64
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
Status= 1 hex: 0x68,0xB6,0xB3,0x36,0xAA,0x7C data: 0,1,2,3,4,5,6,7,8,9
I really can not find any source helping me with this error and I do not even know if the issue is from the source or destination board.
Any thoughts on this issue?
Thanks
ESPNOW Works But Sometimes Outputs Garbage Randomly
-
- Posts: 1698
- Joined: Mon Oct 17, 2022 7:38 pm
- Location: Europe, Germany
Re: ESPNOW Works But Sometimes Outputs Garbage Randomly
You may be
a) sending data from some dangling pointer,
b) printing RX data from some dangling pointer, or
c) having a completely different problem.
a) sending data from some dangling pointer,
b) printing RX data from some dangling pointer, or
c) having a completely different problem.
Re: ESPNOW Works But Sometimes Outputs Garbage Randomly
Thanks for your help.
I am new to this and I really appreciate if you could help me a bit further. What do you exactly mean by "dangling pointer"? how would I know if I have it somewhere? and How would I avoid it?
Thanks
I am new to this and I really appreciate if you could help me a bit further. What do you exactly mean by "dangling pointer"? how would I know if I have it somewhere? and How would I avoid it?
Thanks
-
- Posts: 9715
- Joined: Thu Nov 26, 2015 4:08 am
Re: ESPNOW Works But Sometimes Outputs Garbage Randomly
It's a pointer that used to point to data, but not anymore. E.g. you tell the WiFi stack you're done with the data it sent you (e.g. by returning from the callback) but you print the value at the data pointer afterwards.
It'd help if you could post your code (minimized to the smallest portion that reproduces the error, if possible) so we could take a look btw.
It'd help if you could post your code (minimized to the smallest portion that reproduces the error, if possible) so we could take a look btw.
Who is online
Users browsing this forum: No registered users and 429 guests