clock.h 282 B

1234567891011121314151617181920
  1. #pragma once
  2. #ifndef _CLOCK_H
  3. #define _CLOCK_H
  4. /* Includes */
  5. #include "main.h"
  6. /* macro */
  7. /* Display timeout, sec */
  8. #define DISP_WDT_TIME 10
  9. /* variables */
  10. extern rtc_t Clock;
  11. /* function prototypes */
  12. void btnProcess(void);
  13. void new_Second(void);
  14. #endif /* _CLOCK_H */