mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-23 00:58:14 +00:00

Some checks are pending
CI / setup (check) (push) Waiting to run
CI / setup (esp32) (push) Waiting to run
CI / setup (esp32c3) (push) Waiting to run
CI / setup (esp32c6) (push) Waiting to run
CI / setup (esp32s3) (push) Waiting to run
CI / setup (nrf52840) (push) Waiting to run
CI / setup (rp2040) (push) Waiting to run
CI / setup (stm32) (push) Waiting to run
CI / check (push) Blocked by required conditions
CI / build-esp32 (push) Blocked by required conditions
CI / build-esp32-s3 (push) Blocked by required conditions
CI / build-esp32-c3 (push) Blocked by required conditions
CI / build-esp32-c6 (push) Blocked by required conditions
CI / build-nrf52 (push) Blocked by required conditions
CI / build-rpi2040 (push) Blocked by required conditions
CI / build-stm32 (push) Blocked by required conditions
CI / build-debian-src (push) Waiting to run
CI / package-pio-deps-native-tft (push) Waiting to run
CI / test-native (push) Waiting to run
CI / docker-debian-amd64 (push) Waiting to run
CI / docker-alpine-amd64 (push) Waiting to run
CI / docker-debian-arm64 (push) Waiting to run
CI / docker-debian-armv7 (push) Waiting to run
CI / after-checks (push) Blocked by required conditions
CI / gather-artifacts (esp32) (push) Blocked by required conditions
CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
CI / gather-artifacts (rp2040) (push) Blocked by required conditions
CI / gather-artifacts (stm32) (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
CI / release-firmware (esp32) (push) Blocked by required conditions
CI / release-firmware (esp32c3) (push) Blocked by required conditions
CI / release-firmware (esp32c6) (push) Blocked by required conditions
CI / release-firmware (esp32s3) (push) Blocked by required conditions
CI / release-firmware (nrf52840) (push) Blocked by required conditions
CI / release-firmware (rp2040) (push) Blocked by required conditions
CI / release-firmware (stm32) (push) Blocked by required conditions
Co-authored-by: mverch67 <manuel.verch@gmx.de>
124 lines
3.3 KiB
INI
124 lines
3.3 KiB
INI
[crowpanel_base]
|
|
extends = esp32s3_base
|
|
board = crowpanel
|
|
board_check = true
|
|
upload_protocol = esptool
|
|
board_build.partitions = default_16MB.csv ; must be here for some reason, board.json is not enough !?
|
|
|
|
build_flags = ${esp32s3_base.build_flags} -Os
|
|
-I variants/elecrow_panel
|
|
-D ELECROW
|
|
-D ELECROW_PANEL
|
|
-D CONFIG_ARDUHAL_LOG_COLORS
|
|
-D RADIOLIB_DEBUG_SPI=0
|
|
-D RADIOLIB_DEBUG_PROTOCOL=0
|
|
-D RADIOLIB_DEBUG_BASIC=0
|
|
-D RADIOLIB_VERBOSE_ASSERT=0
|
|
-D RADIOLIB_SPI_PARANOID=0
|
|
-D MESHTASTIC_EXCLUDE_CANNEDMESSAGES=1
|
|
-D MESHTASTIC_EXCLUDE_INPUTBROKER=1
|
|
-D MESHTASTIC_EXCLUDE_WEBSERVER=1
|
|
-D MESHTASTIC_EXCLUDE_SERIAL=1
|
|
-D MESHTASTIC_EXCLUDE_SOCKETAPI=1
|
|
-D MESHTASTIC_EXCLUDE_SCREEN=1
|
|
-D MESHTASTIC_EXCLUDE_ENVIRONMENTAL_SENSOR=1
|
|
; -D INPUTDRIVER_BUTTON_TYPE=0
|
|
-D HAS_TELEMETRY=0
|
|
-D CONFIG_DISABLE_HAL_LOCKS=1
|
|
-D HAS_SCREEN=0
|
|
-D HAS_TFT=1
|
|
-D RAM_SIZE=6144
|
|
-D LV_LVGL_H_INCLUDE_SIMPLE
|
|
-D LV_CONF_INCLUDE_SIMPLE
|
|
-D LV_COMP_CONF_INCLUDE_SIMPLE
|
|
-D LV_USE_SYSMON=0
|
|
-D LV_USE_PROFILER=0
|
|
-D LV_USE_PERF_MONITOR=0
|
|
-D LV_USE_MEM_MONITOR=0
|
|
-D LV_USE_LOG=0
|
|
-D LV_BUILD_TEST=0
|
|
-D USE_LOG_DEBUG
|
|
-D LOG_DEBUG_INC=\"DebugConfiguration.h\"
|
|
-D USE_PACKET_API
|
|
|
|
lib_deps = ${esp32s3_base.lib_deps}
|
|
${device-ui_base.lib_deps}
|
|
earlephilhower/ESP8266Audio@^1.9.9
|
|
earlephilhower/ESP8266SAM@^1.0.1
|
|
lovyan03/LovyanGFX@^1.2.0
|
|
hideakitai/TCA9534@^0.1.1
|
|
|
|
[env:elecrow-24-28-tft]
|
|
extends = crowpanel_base
|
|
|
|
build_flags =
|
|
${crowpanel_base.build_flags}
|
|
-D TFT_HEIGHT=320 ; needed in variant.h
|
|
-D HAS_SDCARD
|
|
-D SDCARD_USE_SOFT_SPI
|
|
-D SPI_DRIVER_SELECT=2
|
|
-D USE_PIN_BUZZER
|
|
; -D INPUTDRIVER_BUTTON_TYPE=0 ; no button as this pin is assigned to LoRa cs!
|
|
-D SCREEN_TOUCH_INT=47 ; used to wake up the MCU by touch
|
|
-D LGFX_DRIVER_TEMPLATE
|
|
-D LGFX_DRIVER=LGFX_GENERIC
|
|
-D GFX_DRIVER_INC=\"graphics/LGFX/LGFX_GENERIC.h\"
|
|
-D SPI_FREQUENCY=80000000
|
|
-D LGFX_SCREEN_WIDTH=240
|
|
-D LGFX_SCREEN_HEIGHT=320
|
|
-D LGFX_PANEL=ST7789
|
|
-D LGFX_ROTATION=1
|
|
-D LGFX_CFG_HOST=SPI2_HOST
|
|
-D LGFX_PIN_SCK=42
|
|
-D LGFX_PIN_MOSI=39
|
|
-D LGFX_PIN_DC=41
|
|
-D LGFX_PIN_CS=40
|
|
-D LGFX_PIN_BL=38
|
|
-D LGFX_TOUCH=FT5x06
|
|
-D LGFX_TOUCH_I2C_ADDR=0x38
|
|
-D LGFX_TOUCH_I2C_SDA=15
|
|
-D LGFX_TOUCH_I2C_SCL=16
|
|
-D LGFX_TOUCH_INT=47
|
|
-D LGFX_TOUCH_RST=48
|
|
-D LGFX_TOUCH_ROTATION=0
|
|
-D VIEW_320x240
|
|
-D MAP_FULL_REDRAW
|
|
|
|
[env:elecrow-35-tft]
|
|
extends = crowpanel_base
|
|
|
|
build_flags =
|
|
${crowpanel_base.build_flags}
|
|
-D TFT_HEIGHT=480 ; needed in variant.h
|
|
-D HAS_SDCARD
|
|
-D SDCARD_USE_SOFT_SPI
|
|
-D SPI_DRIVER_SELECT=2
|
|
-D USE_PIN_BUZZER
|
|
; -D INPUTDRIVER_BUTTON_TYPE=0 ; no button as this pin is assigned to LoRa cs!
|
|
-D SCREEN_TOUCH_INT=47 ; used to wake up the MCU by touch
|
|
-D LV_CACHE_DEF_SIZE=2097152
|
|
-D LGFX_DRIVER_TEMPLATE
|
|
-D LGFX_DRIVER=LGFX_GENERIC
|
|
-D GFX_DRIVER_INC=\"graphics/LGFX/LGFX_GENERIC.h\"
|
|
-D SPI_FREQUENCY=60000000
|
|
-D LGFX_SCREEN_WIDTH=320
|
|
-D LGFX_SCREEN_HEIGHT=480
|
|
-D LGFX_PANEL=ILI9488
|
|
-D LGFX_ROTATION=0
|
|
-D LGFX_CFG_HOST=SPI2_HOST
|
|
-D LGFX_PIN_SCK=42
|
|
-D LGFX_PIN_MOSI=39
|
|
-D LGFX_PIN_DC=41
|
|
-D LGFX_PIN_CS=40
|
|
-D LGFX_PIN_BL=38
|
|
-D LGFX_TOUCH=GT911
|
|
-D LGFX_TOUCH_I2C_ADDR=0x5D
|
|
-D LGFX_TOUCH_I2C_SDA=15
|
|
-D LGFX_TOUCH_I2C_SCL=16
|
|
-D LGFX_TOUCH_INT=47
|
|
-D LGFX_TOUCH_RST=48
|
|
-D LGFX_TOUCH_ROTATION=0
|
|
-D DISPLAY_SET_RESOLUTION
|
|
-D VIEW_320x240
|
|
-D MAP_FULL_REDRAW
|