| 711 | */ |
| 712 | |
| 713 | uint32_t FatFileSystem::clusterToSector(uint32_t clusterNumber) const { |
| 714 | return _firstDataSector + ((clusterNumber - 2) * _bootSector.BPB_SecPerClus); |
| 715 | } |
| 716 | |
| 717 | /** |
| 718 | * Get the first sector of the root directory. |
no outgoing calls
no test coverage detected