@@ -86,9 +86,9 @@ void Wippersnapper_V2::provision() {
86
86
87
87
// Determine if app is in SDLogger mode
88
88
#ifdef USE_TINYUSB
89
- WsV2._fileSystemV2 ->GetPinSDCS ();
89
+ WsV2._fileSystemV2 ->GetSDCSPin ();
90
90
#elif defined(USE_LITTLEFS)
91
- WsV2._littleFSV2 ->GetPinSDCS ();
91
+ WsV2._littleFSV2 ->GetSDCSPin ();
92
92
#elif defined(OFFLINE_MODE_WOKWI)
93
93
WsV2.pin_sd_cs = 15 ;
94
94
#endif
@@ -97,10 +97,10 @@ void Wippersnapper_V2::provision() {
97
97
if (WsV2._sdCardV2 ->isSDCardInitialized ()) {
98
98
return ; // SD card initialized, cede control back to loop()
99
99
} else {
100
- haltErrorV2 (" SD initialization failed.\n Do not reformat the card!\n Is the "
100
+ haltErrorV2 (( " SD initialization failed.\n Do not reformat the card!\n Is the "
101
101
" card correctly inserted?\n Is there a wiring/soldering "
102
102
" problem\n Is the config.json file malformed?\n SD CS Pin: " +
103
- String (WsV2.pin_sd_cs ));
103
+ String (WsV2.pin_sd_cs )). c_str ()) ;
104
104
}
105
105
106
106
#ifdef USE_DISPLAY
@@ -125,9 +125,9 @@ void Wippersnapper_V2::provision() {
125
125
#endif
126
126
127
127
#ifdef USE_TINYUSB
128
- WsV2._fileSystemV2 ->ParseFileSecrets ();
128
+ WsV2._fileSystemV2 ->parseSecrets ();
129
129
#elif defined(USE_LITTLEFS)
130
- WsV2._littleFSV2 ->ParseFileSecrets ();
130
+ WsV2._littleFSV2 ->parseSecrets ();
131
131
#else
132
132
check_valid_ssid (); // non-fs-backed, sets global credentials within network
133
133
// iface
0 commit comments