Ken Van Hoeylandt e23b956cf4 Implement LilyGO T-Dongle S3
+ fix issue with apps installed in /data
+ implement SDMMC driver
+ implement ST7735 driver
2025-10-11 16:29:57 +02:00

16 lines
308 B
C++

#include "PwmBacklight.h"
#include "Tactility/service/gps/GpsService.h"
#include <Tactility/TactilityCore.h>
#define TAG "T-Dongle"
bool initBoot() {
if (!driver::pwmbacklight::init(GPIO_NUM_38, 12000)) {
TT_LOG_E(TAG, "Backlight init failed");
return false;
}
return true;
}