summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-08 16:59:28 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-08 16:59:28 +0100
commit553813b2bdac60974104b0fd9b2bd82053f14ae4 (patch)
tree4ea16b57010e67ad836e52467823679de41b02c5
parentdd04c604d9341d5bf137cb8d899815e8fcd29645 (diff)
minor documentation fixes
-rw-r--r--src/fecmodem.h4
-rw-r--r--src/storage.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/fecmodem.h b/src/fecmodem.h
index 1d8931b..9d43fa3 100644
--- a/src/fecmodem.h
+++ b/src/fecmodem.h
@@ -39,6 +39,10 @@ class FECModem : public Modem {
public:
FECModem() : Modem() {};
+ /**
+ * Enable the modem. Resets the internal Hamming state and calls
+ * Modem::enable().
+ */
void enable(void);
/**
diff --git a/src/storage.h b/src/storage.h
index 5485e3c..cb99afd 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -61,7 +61,7 @@ class Storage {
/**
* Checks whether the EEPROM contains animathion data.
*
- * @return true if the EEPROm contains valid-looking data
+ * @return true if the EEPROM contains valid-looking data
*/
bool hasData();