Subversion Repositories Code-Repo

Rev

Rev 273 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
273 Kevin 1
#ifndef IO_H
2
#define	IO_H
3
 
4
typedef struct {
5
    uint8_t btn_change;
6
} IO_DATA;
7
 
8
void IO_Init(void);
9
void IO_IOC_Enable(void);
10
void IO_Interrupt(void);
11
 
12
#endif	/* IO_H */
13