X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fafsk.h;h=dc2cf73a81dcf69ec8669c7c9499f6dcd99ebade;hb=4bcadbb78afadbfb3ac273879e3e6df407de060f;hp=49d5ce7ba1261fd956511b5fbdada5c6c6aa38d0;hpb=192418d2e34d644d7f652378f68ff3b2fed183e0;p=bertos.git diff --git a/bertos/net/afsk.h b/bertos/net/afsk.h index 49d5ce7b..dc2cf73a 100644 --- a/bertos/net/afsk.h +++ b/bertos/net/afsk.h @@ -34,10 +34,11 @@ * * \version $Id$ * \author Francesco Sacchi - * + * * $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