BeRTOS
hw_afsk.h
Go to the documentation of this file.
00001 
00038 #ifndef HW_AFSK_H
00039 #define HW_AFSK_H
00040 
00041 #include "cfg/cfg_arch.h"
00042 
00043 #warning TODO:This is an example implementation, you must implement it!
00044 
00055 #define AFSK_ADC_INIT(ch, ctx) do { (void)ch, (void)ctx; } while (0)
00056 
00057 #define AFSK_STROBE_INIT() do { /* Implement me */ } while (0)
00058 #define AFSK_STROBE_ON()   do { /* Implement me */ } while (0)
00059 #define AFSK_STROBE_OFF()  do { /* Implement me */ } while (0)
00060 
00071 #define AFSK_DAC_INIT(ch, ctx)   do { (void)ch, (void)ctx; } while (0)
00072 
00077 #define AFSK_DAC_IRQ_START(ch)   do { (void)ch; /* Implement me */ } while (0)
00078 
00083 #define AFSK_DAC_IRQ_STOP(ch)    do { (void)ch; /* Implement me */ } while (0)
00084 
00085 #endif /* HW_AFSK_H */