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.
15 lines
430 B
15 lines
430 B
#include "Page_main.h"
|
|
#include "./Processer/tjc_screen_page.h"
|
|
#include <stdint.h>
|
|
|
|
void OnPageload_main() { printf("Load main\n"); }
|
|
|
|
void OnPageButton_main() { printf("Button main\n"); }
|
|
|
|
void OnPageInputFileModify_main(uint8_t bid, uint8_t) { printf("InputFile main\n"); }
|
|
|
|
void Page_main_register(void) {
|
|
Load_reg(OnPageload_main);
|
|
Button_reg(OnPageButton_main);
|
|
InputFileModify_reg(OnPageInputFileModify_main);
|
|
}
|