2.8" Display

BASH
python3 make.py esp32 \
    BOARD=ESP32_GENERIC_S3 \
    BOARD_VARIANT=SPIRAM_OCT \
    DISPLAY=ili9341 \
    INDEV=xpt2046 \
    --flash-size=16 \
    --partition-size=4194304 \
    CONFIG_SPIRAM_MODE_OCT=y \
    CONFIG_SPIRAM_SPEED_80M=y \
    CONFIG_BOOTLOADER_WDT_TIME_MS=12000

Flashen

BASH
python -m esptool --chip esp32s3 -b 460800 --before default_reset --after no_reset write_flash --flash_mode dio --flash_size 16MB --flash_freq 80m 0x0 build-ESP32_GENERIC_S3-SPIRAM_OCT/bootloader/bootloader.bin 0x8000 build-ESP32_GENERIC_S3-SPIRAM_OCT/partition_table/partition-table.bin 0x10000 build-ESP32_GENERIC_S3-SPIRAM_OCT/micropython.bin
or from the "/home/USER/_Dev/Python/_ESP32/lvgl_micropython/lib/micropython/ports/esp32/build-ESP32_GENERIC_S3-SPIRAM_OCT" directory
python -m esptool --chip esp32s3 -b 460800 --before default_reset --after no_reset write_flash "@flash_args"
bootloader  @0x000000    19232  (   13536 remaining)
partitions  @0x008000     3072  (    1024 remaining)
application @0x010000  2922496  ( 1271808 remaining)
total                  2988032
make: Verzeichnis „/home/USER/_Dev/Python/_ESP32/lvgl_micropython/lib/micropython/ports/esp32“ wird verlassen