File tree 3 files changed +9
-11
lines changed 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -287,8 +287,6 @@ void beginSD()
287
287
online.microSD = false ;
288
288
gotSemaphore = false ;
289
289
290
- log_d (" settings.enableSD: %d" , settings.enableSD );
291
-
292
290
while (settings.enableSD == true )
293
291
{
294
292
// Setup SD card access semaphore
@@ -305,7 +303,7 @@ void beginSD()
305
303
306
304
if (USE_SPI_MICROSD)
307
305
{
308
- systemPrintln (" Initializing microSD - using SPI, SdFat and SdFile" );
306
+ log_d (" Initializing microSD - using SPI, SdFat and SdFile" );
309
307
310
308
pinMode (pin_microSD_CS, OUTPUT);
311
309
digitalWrite (pin_microSD_CS, HIGH); // Be sure SD is deselected
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ void powerOnCheck()
8
8
if (digitalRead (pin_powerSenseAndControl) == LOW)
9
9
delay (500 );
10
10
11
- if (ENABLE_DEVELOPER)
11
+ if (ENABLE_DEVELOPER == false )
12
12
{
13
13
if (pin_powerSenseAndControl >= 0 )
14
14
if (digitalRead (pin_powerSenseAndControl) != LOW)
Original file line number Diff line number Diff line change 19
19
Settings are loaded from microSD if available otherwise settings are pulled from ESP32's file system LittleFS.
20
20
*/
21
21
22
- // This is passed in from compiler extra flags
23
- #ifndef POINTPERFECT_TOKEN
24
- #define FIRMWARE_VERSION_MAJOR 99
25
- #define FIRMWARE_VERSION_MINOR 99
26
- #endif
27
-
28
22
#define COMPILE_WIFI // Comment out to remove WiFi functionality
29
23
#define COMPILE_AP // Requires WiFi. Comment out to remove Access Point functionality
30
24
#define COMPILE_ESPNOW // Requires WiFi. Comment out to remove ESP-Now functionality.
35
29
36
30
// Always define ENABLE_DEVELOPER to enable its use in conditional statements
37
31
#ifndef ENABLE_DEVELOPER
38
- #define ENABLE_DEVELOPER true // This enable specials developer modes (don't check power button at startup). Passed in from compiler flags
32
+ #define ENABLE_DEVELOPER true // This enable specials developer modes (don't check power button at startup). Passed in from compiler flags.
33
+ #endif
34
+
35
+ // This is passed in from compiler extra flags
36
+ #ifndef POINTPERFECT_TOKEN
37
+ #define FIRMWARE_VERSION_MAJOR 99
38
+ #define FIRMWARE_VERSION_MINOR 99
39
39
#endif
40
40
41
41
// Define the RTK board identifier:
You can’t perform that action at this time.
0 commit comments