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.

16 lines
293 B

11 months ago
11 months ago
11 months ago
11 months ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include "ui.h"
  4. #include "tjc_processer.h"
  5. #include "zlog.h"
  6. typedef struct {
  7. void (*OnPageLoad)();
  8. void (*OnPageButton)(uint8_t,uint8_t);
  9. } PageProcesser;
  10. void page_processer(tjc_event_t* event, uint8_t page);
  11. void Page_initialize(uint8_t page);