Added morse receiver app. (#2923)

* Adder morse receiver app. Works with cw and fm mode. Adaptive speed learning. Logging.
This commit is contained in:
Pezsma
2026-01-16 09:57:45 +01:00
committed by GitHub
parent 19eb1c40ab
commit 877ede5f86
18 changed files with 1265 additions and 17 deletions
+8
View File
@@ -38,3 +38,11 @@ Optional<File::Error> LogFile::write_raw(const std::string& message) {
}
return error;
}
Optional<File::Error> LogFile::write_raw_no_newline(const std::string& message) {
auto result_s = file.write(message.c_str(), message.size());
if (!result_s.is_error()) {
file.sync();
}
return {result_s.error()};
}