diff options
-rw-r--r-- | src/fecmodem.h | 4 | ||||
-rw-r--r-- | src/storage.h | 2 |
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(); |