File tree 4 files changed +54
-1
lines changed
4 files changed +54
-1
lines changed Original file line number Diff line number Diff line change 6
6
build.ps1
7
7
RTCM_SC-104_v3.2.pdf
8
8
TODO.txt
9
- secrets.h
9
+
Original file line number Diff line number Diff line change
1
+ // Your WiFi credentials
2
+ const char ssid [] = "my_wifi" ;
3
+ const char password [] = "my_wifi_password" ;
4
+
5
+ // RTK2Go works well and is free
6
+ const char casterHost [] = "rtk2go.com" ;
7
+ const uint16_t casterPort = 2101 ;
8
+ const char casterUser []
= "[email protected] " ;
// User must provide their own email address to use RTK2Go
9
+ const char casterUserPW [] = "" ;
10
+ const char mountPoint [] = "bldr_SparkFun1" ; // The mount point you want to get data from
11
+
12
+ // Emlid Caster also works well and is free
13
+ // const char casterHost[] = "caster.emlid.com";
14
+ // const uint16_t casterPort = 2101;
15
+ // const char casterUser[] = "u99696"; // User name and pw must be obtained through their web portal
16
+ // const char casterUserPW[] = "466zez";
17
+ // const char mountPoint[] = "MP1979"; // The mount point you want to get data from
Original file line number Diff line number Diff line change
1
+ // Your WiFi credentials
2
+ const char ssid [] = "my_wifi" ;
3
+ const char password [] = "my_wifi_password" ;
4
+
5
+ // RTK2Go works well and is free
6
+ const char casterHost [] = "rtk2go.com" ;
7
+ const uint16_t casterPort = 2101 ;
8
+ const char casterUser []
= "[email protected] " ;
// User must provide their own email address to use RTK2Go
9
+ const char casterUserPW [] = "" ;
10
+ const char mountPoint [] = "my_mount_point" ; // The mount point you want to push data to
11
+ const char mountPointPW [] = "my_mp_password" ;
12
+
13
+ // Emlid Caster also works well and is free
14
+ // const char casterHost[] = "caster.emlid.com";
15
+ // const uint16_t casterPort = 2101;
16
+ // const char casterUser[] = "u99696"; // User name and pw must be obtained through their web portal
17
+ // const char casterUserPW[] = "466zez";
18
+ // const char mountPoint[] = "MP1979"; // The mount point you want to get data from
Original file line number Diff line number Diff line change
1
+ // Your WiFi credentials
2
+ const char ssid [] = "my_wifi" ;
3
+ const char password [] = "my_wifi_password" ;
4
+
5
+ // RTK2Go works well and is free
6
+ const char casterHost [] = "rtk2go.com" ;
7
+ const uint16_t casterPort = 2101 ;
8
+ const char casterUser []
= "[email protected] " ;
// User must provide their own email address to use RTK2Go
9
+ const char casterUserPW [] = "" ;
10
+ const char mountPoint [] = "my_mount_point" ; // The mount point you want to push data to
11
+ const char mountPointPW [] = "my_mp_password" ;
12
+
13
+ // Emlid Caster also works well and is free
14
+ // const char casterHost[] = "caster.emlid.com";
15
+ // const uint16_t casterPort = 2101;
16
+ // const char casterUser[] = "u99696"; // User name and pw must be obtained through their web portal
17
+ // const char casterUserPW[] = "466zez";
18
+ // const char mountPoint[] = "MP1979"; // The mount point you want to get data from
You can’t perform that action at this time.
0 commit comments