File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 2
2
ESPNOW.ino
3
3
4
4
Handle the ESP-NOW events
5
+ Use ESP NOW protocol to transmit RTCM between RTK Products via 2.4GHz
6
+
7
+ How pairing works:
8
+ 1. Device enters pairing mode
9
+ 2. Device adds the broadcast MAC (all 0xFFs) as peer
10
+ 3. Device waits for incoming pairing packet from remote
11
+ 4. If valid pairing packet received, add peer, immediately transmit a pairing packet to that peer and exit.
12
+
13
+ ESP NOW is bare metal, there is no guaranteed packet delivery. For RTCM byte transmissions using ESP NOW:
14
+ We don't care about dropped packets or packets out of order. The ZED will check the integrity of the RTCM packet.
15
+ We don't care if the ESP NOW packet is corrupt or not. RTCM has its own CRC. RTK needs valid RTCM once every
16
+ few seconds so a single dropped frame is not critical.
5
17
**********************************************************************/
6
18
7
19
#ifdef COMPILE_ESPNOW
You can’t perform that action at this time.
0 commit comments