Add missing prototypes.
[bertos.git] / bertos / net / afsk.h
index 49d5ce7ba1261fd956511b5fbdada5c6c6aa38d0..dc2cf73a81dcf69ec8669c7c9499f6dcd99ebade 100644 (file)
  *
  * \version $Id$
  * \author Francesco Sacchi <asterix@develer.com>
- * 
+ *
  * $WIZ$ module_name = "afsk"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_afsk.h"
  * $WIZ$ module_depends = "timer", "kfile"
+ * $WIZ$ module_hw = "bertos/hw/hw_afsk.h"
  */
 
 #ifndef DRV_AFSK_H
@@ -62,8 +63,17 @@ INLINE Afsk *AFSK_CAST(KFile *fd)
 
 void afsk_init(Afsk *af);
 
-#define HDLC_FLAG  0x7E
-#define HDLC_RESET 0x7F
-#define AFSK_ESC   0x1B
+/**
+ * \name afsk filter type
+ * $WIZ$ afsk_filter_list = "AFSK_BUTTERWORTH", "AFSK_CHEBYSHEV"
+ * \{
+ */
+#define AFSK_BUTTERWORTH  0
+#define AFSK_CHEBYSHEV    1
+/* \} */
+
+int afsk_testSetup(void);
+int afsk_testRun(void);
+int afsk_testTearDown(void);
 
 #endif