initial structure

This commit is contained in:
Siwat Sirichai 2023-09-29 23:18:21 +07:00
parent c96ce8a67b
commit 7bf49d0997
7 changed files with 139 additions and 115 deletions

View file

@ -1,23 +1,13 @@
#ifndef USER_CODE
#define USER_CODE
#include <ESPMegaPRO.h>
void user_pre_init() {
}
void user_init() {
}
void user_loop() {
}
void virtual_interrupt_user_callback(int pin, int state) {
}
void timer_tick_callback() {
}
#ifndef CORE_LOADED
#define CORE_LOADED
#include <espmega_iot_core.hpp>
#endif
void user_pre_init();
void user_init();
void user_loop();
void virtual_interrupt_user_callback(int pin, int state);
void timer_tick_callback();
void external_lcd_callback(int touch_hex);
#endif