Rev 1180 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1180 | Rev 1201 | ||
---|---|---|---|
Line 1... | Line -... | ||
1 | /*####################################################################################### |
- | |
2 | Dekodieren eines Spectrum Signals |
- | |
3 | #######################################################################################*/ |
- | |
4 | - | ||
5 | #ifndef _SPECTRUM_H |
1 | #ifndef _SPECTRUM_H |
6 | #define _SPECTRUM_H |
2 | #define _SPECTRUM_H |
- | 3 | ||
7 | void Uart1Init(void); |
4 | #include <inttypes.h> |
- | 5 | ||
- | 6 | #define USART1_BAUD 115200 |
|
- | 7 | // this function should be called within the UART RX ISR |
|
- | 8 | extern void spectrum_parser(uint8_t c); |
|
- | 9 | ||
8 | #endif //_RC_H |
10 | #endif //_SPECTRUM_H |