Merge develop into main (#368)
New boards: - LilyGO T-Dongle S3 - M5Stack StickC Plus - M5Stack StickC Plus2 New drivers: - AXP192: power control via I2C - ButtonControl: GPIO button input as LVGL device Other changes: - Updated implementation of AXP192 driver for Core2 board - Fix launcher UX for vertical layout - Fix error when properties file had an empty line - Add `__floatsidf` to `tt_init.cpp`
This commit is contained in:
committed by
GitHub
parent
3a59540365
commit
d8346998ce
@@ -8,6 +8,9 @@
|
||||
#if defined(CONFIG_TT_BOARD_LILYGO_TDECK)
|
||||
#include "LilygoTdeck.h"
|
||||
#define TT_BOARD_HARDWARE &lilygo_tdeck
|
||||
#elif defined(CONFIG_TT_BOARD_LILYGO_TDONGLE_S3)
|
||||
#include "LilygoTdongleS3.h"
|
||||
#define TT_BOARD_HARDWARE &lilygo_tdongle_s3
|
||||
#elif defined(CONFIG_TT_BOARD_LILYGO_TLORA_PAGER)
|
||||
#include "LilygoTloraPager.h"
|
||||
#define TT_BOARD_HARDWARE &lilygo_tlora_pager
|
||||
@@ -50,6 +53,12 @@
|
||||
#elif defined(CONFIG_TT_BOARD_M5STACK_CORES3)
|
||||
#include "M5stackCoreS3.h"
|
||||
#define TT_BOARD_HARDWARE &m5stack_cores3
|
||||
#elif defined(CONFIG_TT_BOARD_M5STACK_STICKC_PLUS)
|
||||
#include "M5StackStickCPlus.h"
|
||||
#define TT_BOARD_HARDWARE &m5stack_stickc_plus
|
||||
#elif defined(CONFIG_TT_BOARD_M5STACK_STICKC_PLUS2)
|
||||
#include "M5StackStickCPlus2.h"
|
||||
#define TT_BOARD_HARDWARE &m5stack_stickc_plus2
|
||||
#elif defined(CONFIG_TT_BOARD_UNPHONE)
|
||||
#include "UnPhone.h"
|
||||
#define TT_BOARD_HARDWARE &unPhone
|
||||
|
||||
Reference in New Issue
Block a user