mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-23 17:13:38 +00:00

* Purge an incomplete E-Ink driver * Use the deep-sleep mode of SSD16XX E-Ink displays * TwoButton doesn't need to store pin mode * Fix false positive button presses after light sleep * E-Ink driver for DEPG0213BNS800 * InkHUD support for LilyGo T3S3 E-paper --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
37 lines
1.1 KiB
INI
37 lines
1.1 KiB
INI
[env:tlora-t3s3-epaper]
|
|
extends = esp32s3_base
|
|
board = tlora-t3s3-v1
|
|
board_check = true
|
|
upload_protocol = esptool
|
|
|
|
build_flags =
|
|
${esp32_base.build_flags} -D TLORA_T3S3_EPAPER -I variants/tlora_t3s3_epaper
|
|
-DGPS_POWER_TOGGLE
|
|
-DUSE_EINK
|
|
-DEINK_DISPLAY_MODEL=GxEPD2_213_BN
|
|
-DEINK_WIDTH=250
|
|
-DEINK_HEIGHT=122
|
|
-DUSE_EINK_DYNAMICDISPLAY ; Enable Dynamic EInk
|
|
-DEINK_LIMIT_FASTREFRESH=10 ; How many consecutive fast-refreshes are permitted
|
|
|
|
lib_deps =
|
|
${esp32s3_base.lib_deps}
|
|
https://github.com/meshtastic/GxEPD2/archive/b202ebfec6a4821e098cf7a625ba0f6f2400292d.zip
|
|
|
|
[env:tlora-t3s3-epaper-inkhud]
|
|
extends = esp32s3_base, inkhud
|
|
board = tlora-t3s3-v1
|
|
board_check = true
|
|
upload_protocol = esptool
|
|
build_src_filter =
|
|
${esp32_base.build_src_filter}
|
|
${inkhud.build_src_filter}
|
|
build_flags =
|
|
${esp32s3_base.build_flags}
|
|
${inkhud.build_flags}
|
|
-I variants/tlora_t3s3_epaper
|
|
-D TLORA_T3S3_EPAPER
|
|
-D MAX_THREADS=40 ; Required if used with WiFi
|
|
lib_deps =
|
|
${inkhud.lib_deps} ; InkHUD libs first, so we get GFXRoot instead of AdafruitGFX
|
|
${esp32s3_base.lib_deps} |