You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Fixed) Something wierd happened with v1.13. Fix type changed? LED is not turning on even in float mode. (Disable SBAS)
25
25
(Done) Check for v1.13 of ZED firmware. Display warning if not matching.
26
26
(Fixed) ESP32 crashing when in rover mode, when LEDs change? https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library/issues/124
27
-
Set static position based on user input
28
-
Wait for better pos accuracy before starting a survey in
27
+
(Done) Wait for better pos accuracy before starting a survey in
29
28
Can we add NTRIP reception over Wifi to the ESP32 to aid in survey in time?
30
29
Test lots of bt switching from setup switch. Test for null handles: https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos.html
31
-
32
-
BT cast batt, RTK status, etc
30
+
(Done) Transmit battery level, RTK status, etc
31
+
32
+
Save settings to file
33
+
I should be able to start a base anytime and have it log
34
+
Test that we can log and do full BT + NTREIP reliably
35
+
Update repo
36
+
Clean up dirs
33
37
34
38
Menu System:
35
39
Test system? Connection to GPS?
@@ -49,8 +53,8 @@ const int FIRMWARE_VERSION_MINOR = 6;
#include<SparkFun_MAX1704x_Fuel_Gauge_Arduino_Library.h>// Click here to get the library: http://librarymanager/All#SparkFun_MAX1704x_Fuel_Gauge_Arduino_Library
120
-
SFE_MAX1704X lipo(MAX1704X_MAX17048);// Create a MAX17048
120
+
SFE_MAX1704X lipo(MAX1704X_MAX17048);
121
121
122
122
// setting PWM properties
123
123
constint freq = 5000;
@@ -126,11 +126,10 @@ const int ledGreenChannel = 1;
unitMACAddress[5] += 2; //Convert MAC address to Bluetooth MAC (add 2): https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/system.html#mac-address
Copy file name to clipboardExpand all lines: Firmware/RTK_Enclosed/System.ino
+31-7Lines changed: 31 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,15 @@ uint8_t settingPayload[MAX_PAYLOAD_SIZE]; //This array holds the payload data by
5
5
//This allows multiple units to be on at same time
6
6
boolstartBluetooth()
7
7
{
8
-
uint8_t mac[6];
9
-
esp_read_mac(mac, ESP_MAC_WIFI_STA);
10
-
mac[5] += 2; //Convert MAC address to Bluetooth MAC (add 2): https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/system.html#mac-address
0 commit comments