Xteink-X4-crosspoint-reader/lib/FsHelpers/FsHelpers.h
Dave Allie fb5fc32c5d
Add exFAT support (#150)
## Summary

* Swap to updated SDCardManager which uses SdFat
* Add exFAT support
  * Swap to using FsFile everywhere
* Use newly exposed `SdMan` macro to get to static instance of
SDCardManager
* Move a bunch of FsHelpers up to SDCardManager
2025-12-30 16:09:30 +11:00

8 lines
123 B
C++

#pragma once
#include <string>
class FsHelpers {
public:
static std::string normalisePath(const std::string& path);
};