Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
428 | killagreg | 1 | #ifndef __SSC_H |
2 | #define __SSC_H |
||
3 | |||
4 | #include <inttypes.h> |
||
5 | |||
6 | #ifdef USE_FOLLOWME |
||
7 | #define SD_SWITCH !(PINB & (1<<PINB2)) |
||
8 | #endif |
||
9 | #ifdef USE_SDLOGGER |
||
10 | #define SD_SWITCH !(PINB & (1<<PINB3)) |
||
11 | #endif |
||
12 | |||
13 | extern void SSC_Init(void); |
||
14 | extern uint8_t SSC_GetChar(void); |
||
15 | extern void SSC_PutChar(uint8_t); |
||
16 | extern void SSC_Enable(void); |
||
17 | extern void SSC_Disable(void); |
||
18 | extern void SSC_Deinit(void); |
||
19 | |||
20 | #endif //__SSC_H |