Revert "Fix lwip implementation of retransmission timers."
[bertos.git] / bertos / net / afsk.h
index 4db5fe42ab1ee7cd23c91c767729f060a24516db..b23ba63dde1016e4ed0fb101ddf19066efab4e66 100644 (file)
@@ -32,8 +32,7 @@
  *
  * \brief AFSK1200 modem.
  *
- * \version $Id$
- * \author Francesco Sacchi <asterix@develer.com>
+ * \author Francesco Sacchi <batt@develer.com>
  *
  * $WIZ$ module_name = "afsk"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_afsk.h"
  * $WIZ$ module_hw = "bertos/hw/hw_afsk.h"
  */
 
-#ifndef DRV_AFSK_H
-#define DRV_AFSK_H
+#ifndef NET_AFSK_H
+#define NET_AFSK_H
 
 #include "cfg/cfg_afsk.h"
 #include "hw/hw_afsk.h"
 
-#include <kern/kfile.h>
 #include <cfg/compiler.h>
+
+#include <io/kfile.h>
+
 #include <struct/fifobuf.h>
 
 
@@ -187,7 +188,7 @@ typedef struct Afsk
        uint16_t preamble_len;
 
        /**
-        * Preamble length.
+        * Trailer length.
         * After sending the actual data, the AFSK shifts out
         * trailer_len HDLC_FLAG characters.
         * This helps to synchronize the demodulator filters on the receiver side.
@@ -222,4 +223,4 @@ int afsk_testSetup(void);
 int afsk_testRun(void);
 int afsk_testTearDown(void);
 
-#endif
+#endif /* NET_AFSK_H */