summaryrefslogtreecommitdiff
path: root/src/system.cc
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-02-05 17:33:02 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-02-05 17:33:02 +0100
commitf88c1fde18146fd1bf543399da0f6584c3fd4a81 (patch)
treed93b2d30ac2b83cc739e1ee550179c1792b1e37e /src/system.cc
parent4bf560b6f3ef6089af04dfc56d078b9978496b07 (diff)
add (untested) Hamming forward error correction code and corresponding class
The system now uses a FECModem instance, which inherits the receive methods etc. from Modem. Up next: Make the modem's buffer read methods private and expose them in error-corrected FECModem methods instead
Diffstat (limited to 'src/system.cc')
-rw-r--r--src/system.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.cc b/src/system.cc
index a192b24..1a0522d 100644
--- a/src/system.cc
+++ b/src/system.cc
@@ -5,7 +5,7 @@
#include <stdlib.h>
#include "display.h"
-#include "modem.h"
+#include "fecmodem.h"
#include "storage.h"
#include "system.h"