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

#pragma once
#include <stdint.h>
#include "ui.h"
#include "tjc_processer.h"
#include "zlog.h"
typedef struct {
void (*OnPageLoad)();
void (*OnPageButton)(uint8_t,uint8_t);
} PageProcesser;
void page_processer(tjc_event_t* event, uint8_t page);
void Page_initialize(uint8_t page);