mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
15 lines
375 B
C++
15 lines
375 B
C++
#include "m5stack_cores3.h"
|
|
#include "m5stack_shared.h"
|
|
|
|
extern const tt::hal::sdcard::SdCard m5stack_cores3_sdcard;
|
|
|
|
const tt::hal::Configuration m5stack_cores3 = {
|
|
.bootstrap = &m5stack_bootstrap,
|
|
.init_graphics = &m5stack_lvgl_init,
|
|
.display = {
|
|
.set_backlight_duty = nullptr
|
|
},
|
|
.sdcard = &m5stack_cores3_sdcard,
|
|
.power = &m5stack_power
|
|
};
|