X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fafsk.h;h=dc2cf73a81dcf69ec8669c7c9499f6dcd99ebade;hb=5f5b4f3e5b6e167c8bd0580b505b7c8a2e5ee481;hp=a0ce18bb762a71bca5faada4e69b3df88558754b;hpb=e0e183fc664ddfe6327c6c4c72bd81cde7572d71;p=bertos.git diff --git a/bertos/net/afsk.h b/bertos/net/afsk.h index a0ce18bb..dc2cf73a 100644 --- a/bertos/net/afsk.h +++ b/bertos/net/afsk.h @@ -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