user.h 317 B

123456789101112131415161718192021
  1. /*
  2. * user.h
  3. *
  4. * Author: Andrey Koryagin https://blog.avislab.com/
  5. */
  6. #ifndef INC_USER_H_
  7. #define INC_USER_H_
  8. void USER_Init(void);
  9. void USER_While(void);
  10. void USER_Tasks(void);
  11. //#define USER_PROTOCOL_ENABLE
  12. #ifdef USER_PROTOCOL_ENABLE
  13. uint8_t USER_Packet_Handling(void);
  14. #endif
  15. #endif /* INC_USER_H_ */