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.

24 lines
701 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #ifndef __OZONE_WORK_H__
  2. #define __OZONE_WORK_H__
  3. #include <stdbool.h> //���岼��
  4. #include <stdint.h>
  5. #include "port.h"
  6. #include "timer.h"
  7. #include "systick.h"
  8. void gears_led_on(uint8_t led_number);
  9. void timing_led_on(uint8_t led_number);
  10. void set_ozen_gears(int ozen_gears);
  11. void ozone_work_mode(int mode);
  12. void set_ozone_work_time(void);
  13. void timing_ozone_work_over(void);
  14. void is_ozone_work_time_over(void);
  15. void is_ozone_interva_time_over(void);
  16. void set_interval_time(void);
  17. static void ozone_interval_begin(void);
  18. static void close_ozone_work(void);
  19. bool get_ozone_starting_up_state(void);
  20. void process_switch_key(void);
  21. void power_on_ozone_work_state(void);
  22. #endif