input.h 274 B

123456789101112131415161718192021222324252627
  1. #ifndef __INPUT_H
  2. #define __INPUT_H
  3. #include "io.h"
  4. extern in_t inputs[];
  5. //
  6. void in_init(in_t *input);
  7. //
  8. void in_exint_init(void);
  9. //
  10. void io_test(void);
  11. //
  12. void input_task(void *params);
  13. //
  14. void debounce(void);
  15. #endif // __INPUT_H