Added more SSTV modes

A bit more work done on Replay (still not enabled)
This commit is contained in:
furrtek
2017-03-23 21:28:21 +00:00
parent 6a0bcb9cca
commit 685e4c6e4b
19 changed files with 288 additions and 172 deletions

View File

@@ -34,8 +34,13 @@
class StreamOutput {
public:
StreamOutput(ReplayConfig* const config);
StreamOutput(const StreamOutput&) = delete;
StreamOutput(StreamOutput&&) = delete;
StreamOutput& operator=(const StreamOutput&) = delete;
StreamOutput& operator=(StreamOutput&&) = delete;
size_t write(const void* const data, const size_t length);
size_t read(const void* const data, const size_t length);
private:
static constexpr size_t buffer_count_max_log2 = 3;