123456789101112131415161718192021222324252627 |
- #ifndef __INPUT_H
- #define __INPUT_H
- #include "io.h"
- extern in_t inputs[];
- //
- void in_init(in_t *input);
- //
- void in_exint_init(void);
- //
- void io_test(void);
- //
- void input_task(void *params);
- //
- void debounce(void);
- #endif // __INPUT_H
|