1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00

fix data types

This commit is contained in:
ficeto 2015-05-16 16:29:10 +03:00
parent 5529188dae
commit 53cb1a0140

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; }