|
22 | 22 | Note: Almost any ESP32 pins can be used for serial.
|
23 | 23 | Connect a dual or triband GNSS antenna: https://www.sparkfun.com/products/21801
|
24 | 24 |
|
25 |
| -55 RTCM messages supported: 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1019, 1020, 1033, |
26 |
| -1042, 1044, 1045, 1046, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1091, 1092, 1093, 1094, 1095, 1096, 1097, |
27 |
| -1104, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1121, 1122, 1123, 1124, 1125, 1126, 1127, |
| 25 | + 68 RTCM messages supported: 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1009, 1010, 1011, 1012, 1013, 1019, 1020, |
| 26 | + 1033, 1042, 1044, 1045, 1046, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1081, 1082, 1083, 1084, 1085, 1086, 1087, |
| 27 | + 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1111, 1112, 1113, 1114, 1115, |
| 28 | + 1116, 1117, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1131, 1132, 1133, 1134, 1135, 1136, 1137, |
28 | 29 |
|
29 | 30 | */
|
30 | 31 |
|
@@ -65,8 +66,8 @@ void setup()
|
65 | 66 | int delayBetweenCommands = 10;
|
66 | 67 | char comPort[] = "COM3"; //Enable on a different port than the one we are using
|
67 | 68 |
|
68 |
| - Serial.println("Scanning 1000 to 1130"); |
69 |
| - for (int x = 1000 ; x < 1130 ; x++) |
| 69 | + Serial.println("Scanning 1000 to 1300"); |
| 70 | + for (int x = 1000 ; x <= 1300 ; x++) |
70 | 71 | {
|
71 | 72 | char myTest[100] = {0};
|
72 | 73 | sprintf(myTest, "RTCM%04d", x);
|
|
0 commit comments