You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
228 B

  1. #ifndef INPUT_H
  2. #define INPUT_H
  3. #include "App.h"
  4. struct InputData
  5. {
  6. uint8_t btnNum;
  7. int64_t timing;
  8. };
  9. // Entry point
  10. TaskHandle_t InitInputManagement();
  11. // RTOS task
  12. void InputManagementTask(void *parameter);
  13. #endif