Name adjustment

This commit is contained in:
Slider0007
2022-10-22 20:27:21 +02:00
parent 0adfc45d36
commit 2b810ca32d
4 changed files with 9 additions and 9 deletions

View File

@@ -92,7 +92,7 @@ string getSDCardPartitionSize(){
return std::to_string(tot_sect);
}
string getSDCardFreeParitionSpace(){
string getSDCardFreePartitionSpace(){
FATFS *fs;
uint32_t fre_clust, fre_sect;
@@ -105,7 +105,7 @@ string getSDCardFreeParitionSpace(){
return std::to_string(fre_sect);
}
string getSDCardParitionAllocationSize(){
string getSDCardPartitionAllocationSize(){
FATFS *fs;
uint32_t fre_clust, allocation_size;
@@ -113,7 +113,7 @@ string getSDCardParitionAllocationSize(){
f_getfree("0:", (DWORD *)&fre_clust, &fs);
allocation_size = fs->ssize;
printf("SD Card Parition Allocation Size (bytes): %d)\n", allocation_size);
printf("SD Card Partition Allocation Size (bytes): %d)\n", allocation_size);
return std::to_string(allocation_size);
}

View File

@@ -48,8 +48,8 @@ string getESPHeapInfo();
/////////////////////////////
string getSDCardPartitionSize();
string getSDCardFreeParitionSpace();
string getSDCardParitionAllocationSize();
string getSDCardFreePartitionSpace();
string getSDCardPartitionAllocationSize();
void SaveSDCardInfo(sdmmc_card_t* card);
string SDCardParseManufacturerIDs(int);