Add missing prototypes.
[bertos.git] / bertos / net / afsk.h
index a0ce18bb762a71bca5faada4e69b3df88558754b..dc2cf73a81dcf69ec8669c7c9499f6dcd99ebade 100644 (file)
@@ -38,6 +38,7 @@
  * $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,4 +63,17 @@ INLINE Afsk *AFSK_CAST(KFile *fd)
 
 void afsk_init(Afsk *af);
 
+/**
+ * \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