1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

fix data types

This commit is contained in:
ficeto
2015-05-16 16:29:10 +03:00
parent b40ec2fc35
commit f946821381

View File

@ -106,8 +106,8 @@ public:
boolean rmdir(char *filepath);
size_t type(){ return card.type(); }
size_t fatType(){ return volume.fatType(); }
uint8_t type(){ return card.type(); }
uint8_t fatType(){ return volume.fatType(); }
size_t blocksPerCluster(){ return volume.blocksPerCluster(); }
size_t totalClusters(){ return volume.clusterCount(); }
size_t blockSize(){ return (size_t)0x200; }