mirror of
https://github.com/meshtastic/firmware.git
synced 2026-03-28 03:53:13 -04:00
* preliminary io pin definitions * Update product link * Move to new variant structure and refactor inkHUD - Display does not work and SX1262 init fails on HT752-02 * update variant definitions * add EPD driver * fix lora, add v1/v2 variant targets * adapt pins for v1/v2 * alt button * add compile guards * use lilygo epd47 lib * workaround for INT ERR_NOT_FOUND * USE_EPD (e-ink parallel display) * use FastEPD driver * create screen * EInkParallelDisplay definition * setup screen * dispaly() implementation * enable touchscreen * rotate touch screen * refactor display buffer processing * provide local copy of TwoWire instance as the touch driver calls end() * use larger fonts * replace touch driver; enable debugging * replace touch driver; enable debugging * consider bitsremain == 0 * tryfix crash * fix button * update touch driver * set lora_cs pin * update touch driver and lib reference * add locks * limit Ghosting similar to EInkDynamicDisplay * workaround for FastEPD partial update bug (artifacts) * display() code cleanup * fix a few platformio definitions * more EPD display cleanup * set rotation * use FastEPD arduino I2C by default * touch rotation * update screen for EPD * increase swipe distance for larger screen * EPD UIRenderer * trunk fmt * further #ifdef USE_EPD * disable rotation which messes up w/h; more cleanup * switch off ghosting algo * releease build; V1 buttons * swap V1 buttons * rearrange USE_EINK/EPD macros, use large font * cleanup (revert modified files) * more cleanup * revert * revert file * revert file Removed redundant line continuation in preprocessor directives. * Temporary gate off PSRam calculations until we can fix them * move variant.cpp and update commit references * revert wrong merge * add earlyInitVariant() * initialize all port 0 pins (0-7) as outputs / HIGH --------- Co-authored-by: Thomas Göttgens <tgoettgens@gmail.com> Co-authored-by: Jason P <applewiz@mac.com> Co-authored-by: Jonathan Bennett <jbennett@incomsystems.biz> Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
39 lines
946 B
JSON
39 lines
946 B
JSON
{
|
|
"build": {
|
|
"arduino": {
|
|
"ldscript": "esp32s3_out.ld",
|
|
"memory_type": "qio_opi",
|
|
"partitions": "default_16MB.csv"
|
|
},
|
|
"core": "esp32",
|
|
"extra_flags": [
|
|
"-DBOARD_HAS_PSRAM",
|
|
"-DARDUINO_RUNNING_CORE=1",
|
|
"-DARDUINO_EVENT_RUNNING_CORE=0",
|
|
"-DARDUINO_USB_CDC_ON_BOOT=1",
|
|
"-DARDUINO_USB_MODE=1"
|
|
],
|
|
"f_cpu": "240000000L",
|
|
"f_flash": "80000000L",
|
|
"flash_mode": "qio",
|
|
"hwids": [["0x303A", "0x1001"]],
|
|
"mcu": "esp32s3",
|
|
"variant": "esp32s3"
|
|
},
|
|
"connectivity": ["wifi", "bluetooth", "lora"],
|
|
"debug": {
|
|
"openocd_target": "esp32s3.cfg"
|
|
},
|
|
"frameworks": ["arduino", "espidf"],
|
|
"name": "LilyGo T5-ePaper-S3",
|
|
"upload": {
|
|
"flash_size": "16MB",
|
|
"maximum_ram_size": 327680,
|
|
"maximum_size": 16777216,
|
|
"require_upload_port": true,
|
|
"speed": 921600
|
|
},
|
|
"url": "https://lilygo.cc/products/t5-e-paper-s3-pro",
|
|
"vendor": "LILYGO"
|
|
}
|