- misplaced macro fixed

- volume size added to volume listing
This commit is contained in:
Wiesner András 2023-11-11 20:06:40 +01:00
parent d7a5a49394
commit bcd655fd8d
2 changed files with 5 additions and 5 deletions

View File

@ -1,15 +1,15 @@
#ifndef EMBPART_FAT32_H #ifndef CORE_EMBPART_FS_FAT32_FAT32
#define EMBPART_FAT32_H #define CORE_EMBPART_FS_FAT32_FAT32
#include <stdint.h> #include <stdint.h>
#ifdef __linux
#include <stdio.h> #include <stdio.h>
#include "../../MassStorage.h" #include "../../MassStorage.h"
#include "../fs_driver.h" #include "../fs_driver.h"
#ifdef __linux
#define MSG(...) printf(__VA_ARGS__) #define MSG(...) printf(__VA_ARGS__)
#endif #endif /* CORE_EMBPART_FS_FAT32_FAT32 */
#define FAT32_CHS_PART_ID (0x0B) #define FAT32_CHS_PART_ID (0x0B)
#define FAT32_LBA_PART_ID (0x0C) #define FAT32_LBA_PART_ID (0x0C)

View File

@ -186,7 +186,7 @@ void mnt_list(const char *dir) {
// if // if
if ((dir[0] == '\0') || ((dir[0] == MNT_DIRSEP) && (dir[1] == '\0'))) { if ((dir[0] == '\0') || ((dir[0] == MNT_DIRSEP) && (dir[1] == '\0'))) {
for (uint8_t i = 0; i < mtab.mounted_vols; i++) { for (uint8_t i = 0; i < mtab.mounted_vols; i++) {
MSG("/%s VOLUME\n", mtab.vols[i].mnt_name); MSG("/%s %.3f MB VOLUME\n", mtab.vols[i].mnt_name, mtab.vols[i].part_size * 1E-06);
} }
return; return;
} }