File tree 3 files changed +9
-2
lines changed 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ const char * const networkUser[] =
188
188
" PVT Server" ,
189
189
" PVT UDP Server" ,
190
190
" NTRIP Server 0" ,
191
+ " NTRIP Server 1" ,
191
192
};
192
193
const int networkUserEntries = sizeof (networkUser) / sizeof (networkUser[0 ]);
193
194
Original file line number Diff line number Diff line change 60
60
// the minor firmware version
61
61
#define RTK_IDENTIFIER (FIRMWARE_VERSION_MAJOR * 0x10 + FIRMWARE_VERSION_MINOR)
62
62
63
- #define NTRIP_SERVER_MAX 1
63
+ #define NTRIP_SERVER_MAX 2
64
64
65
65
#ifdef COMPILE_ETHERNET
66
66
#include < Ethernet.h> // http://librarymanager/All#Arduino_Ethernet
Original file line number Diff line number Diff line change @@ -1118,26 +1118,32 @@ typedef struct
1118
1118
char ntripServer_CasterHost [NTRIP_SERVER_MAX ][50 ] = // It's free...
1119
1119
{
1120
1120
"rtk2go.com" ,
1121
+ "" ,
1121
1122
};
1122
1123
uint16_t ntripServer_CasterPort [NTRIP_SERVER_MAX ] =
1123
1124
{
1124
1125
2101 ,
1126
+ 0 ,
1125
1127
};
1126
1128
char ntripServer_CasterUser [NTRIP_SERVER_MAX ][50 ] =
1127
1129
{
1128
1130
"[email protected] " // Some free casters require auth. User must provide their own email address to use RTK2Go
1131
+ "" ,
1129
1132
};
1130
1133
char ntripServer_CasterUserPW [NTRIP_SERVER_MAX ][50 ] =
1131
1134
{
1132
1135
"" ,
1136
+ "" ,
1133
1137
};
1134
1138
char ntripServer_MountPoint [NTRIP_SERVER_MAX ][50 ] =
1135
1139
{
1136
1140
"bldr_dwntwn2" , // NTRIP Server
1141
+ "" ,
1137
1142
};
1138
1143
char ntripServer_MountPointPW [NTRIP_SERVER_MAX ][50 ] =
1139
1144
{
1140
1145
"WR5wRo4H" ,
1146
+ "" ,
1141
1147
};
1142
1148
1143
1149
// TCP Client
@@ -1189,7 +1195,7 @@ struct struct_online
1189
1195
bool battery = false;
1190
1196
bool accelerometer = false;
1191
1197
bool ntripClient = false;
1192
- bool ntripServer [NTRIP_SERVER_MAX ] = {false};
1198
+ bool ntripServer [NTRIP_SERVER_MAX ] = {false, false };
1193
1199
bool lband = false;
1194
1200
bool lbandCorrections = false;
1195
1201
bool i2c = false;
You can’t perform that action at this time.
0 commit comments