@@ -279,15 +279,15 @@ bool Wippersnapper_FS::createBootFile() {
279
279
bootFile.print (" MAC Address: " );
280
280
bootFile.println (sMAC );
281
281
282
- // Print ESP-specific info to boot file
283
- #ifdef ARDUINO_ARCH_ESP32
282
+ // Print ESP-specific info to boot file
283
+ #ifdef ARDUINO_ARCH_ESP32
284
284
// Get version of ESP-IDF
285
285
bootFile.print (" ESP-IDF Version: " );
286
286
bootFile.println (ESP.getSdkVersion ());
287
287
// Get version of this core
288
288
bootFile.print (" ESP32 Core Version: " );
289
289
bootFile.println (ESP.getCoreVersion ());
290
- #endif
290
+ #endif
291
291
292
292
bootFile.flush ();
293
293
bootFile.close ();
@@ -617,26 +617,26 @@ DSTATUS fdisk_initialize(BYTE pdrv) {
617
617
}
618
618
619
619
DRESULT fdisk_read (BYTE pdrv, /* Physical drive nmuber to identify the drive */
620
- BYTE *buff, /* Data buffer to store read data */
621
- DWORD sector, /* Start sector in LBA */
622
- UINT count /* Number of sectors to read */
620
+ BYTE *buff, /* Data buffer to store read data */
621
+ DWORD sector, /* Start sector in LBA */
622
+ UINT count /* Number of sectors to read */
623
623
) {
624
624
(void )pdrv;
625
625
return flash.readBlocks (sector, buff, count) ? RES_OK : RES_ERROR;
626
626
}
627
627
628
628
DRESULT fdisk_write (BYTE pdrv, /* Physical drive nmuber to identify the drive */
629
- const BYTE *buff, /* Data to be written */
630
- DWORD sector, /* Start sector in LBA */
631
- UINT count /* Number of sectors to write */
629
+ const BYTE *buff, /* Data to be written */
630
+ DWORD sector, /* Start sector in LBA */
631
+ UINT count /* Number of sectors to write */
632
632
) {
633
633
(void )pdrv;
634
634
return flash.writeBlocks (sector, buff, count) ? RES_OK : RES_ERROR;
635
635
}
636
636
637
637
DRESULT fdisk_ioctl (BYTE pdrv, /* Physical drive nmuber (0..) */
638
- BYTE cmd, /* Control code */
639
- void *buff /* Buffer to send/receive control data */
638
+ BYTE cmd, /* Control code */
639
+ void *buff /* Buffer to send/receive control data */
640
640
) {
641
641
(void )pdrv;
642
642
0 commit comments