OutputStream (file M0 -> M4 radio) now works

Disabled numbers station for now (too buggy, low priority)
This commit is contained in:
furrtek
2017-06-23 08:40:22 +01:00
parent c922a56b6d
commit 33a2df9d2a
15 changed files with 48 additions and 30 deletions

View File

@@ -37,6 +37,10 @@ public:
FileReader(FileReader&& file) = delete;
FileReader& operator=(FileReader&&) = delete;
Optional<File::Error> open(const std::filesystem::path& filename) {
return file.open(filename);
}
File::Result<File::Size> read(void* const buffer, const File::Size bytes) override;
protected: