-
Notifications
You must be signed in to change notification settings - Fork 974
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pr-genuf2
- Loading branch information
Showing
11 changed files
with
120 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32s3_out.ld", | ||
"partitions": "default_8MB.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DBOARD_HAS_PSRAM", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1", | ||
"-DARDUINO_USB_MODE=0", | ||
"-DARDUINO_RUNNING_CORE=1", | ||
"-DARDUINO_EVENT_RUNNING_CORE=1" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"hwids": [ | ||
["0x303A", "0x1001"], | ||
["0x303A", "0x0002"] | ||
], | ||
"mcu": "esp32s3", | ||
"variant": "heltec_vision_master_e290" | ||
}, | ||
"connectivity": ["wifi", "bluetooth", "lora"], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": ["arduino", "espidf"], | ||
"name": "Heltec Vision Master E290", | ||
"upload": { | ||
"flash_size": "8MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 8388608, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 921600 | ||
}, | ||
"url": "https://heltec.org/project/vision-master-e290/", | ||
"vendor": "Heltec" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
[env:heltec-vision-master-e290] | ||
board_level = extra | ||
extends = esp32s3_base | ||
board = heltec_wifi_lora_32_V3 | ||
board = heltec_vision_master_e290 | ||
build_flags = | ||
${esp32s3_base.build_flags} | ||
-Ivariants/heltec_vision_master_e290 | ||
-DHELTEC_VISION_MASTER_E290 | ||
-DEINK_DISPLAY_MODEL=GxEPD2_290_BS | ||
-DEINK_WIDTH=296 | ||
-DEINK_HEIGHT=128 | ||
; -D USE_EINK_DYNAMICDISPLAY ; Enable Dynamic EInk | ||
; -D EINK_LIMIT_FASTREFRESH=10 ; How many consecutive fast-refreshes are permitted | ||
; -D EINK_LIMIT_RATE_BACKGROUND_SEC=1 ; Minimum interval between BACKGROUND updates | ||
; -D EINK_LIMIT_RATE_RESPONSIVE_SEC=1 ; Minimum interval between RESPONSIVE updates | ||
; -D EINK_LIMIT_GHOSTING_PX=2000 ; (Optional) How much image ghosting is tolerated | ||
; -D EINK_BACKGROUND_USES_FAST ; (Optional) Use FAST refresh for both BACKGROUND and RESPONSIVE, until a limit is reached. | ||
; -D EINK_HASQUIRK_GHOSTING ; Display model is identified as "prone to ghosting" | ||
; -D EINK_HASQUIRK_WEAKFASTREFRESH ; Pixels set with fast-refresh are easy to clear, disrupted by sunlight | ||
-I variants/heltec_vision_master_e290 | ||
-D HELTEC_VISION_MASTER_E290 | ||
-D BUTTON_CLICK_MS=200 | ||
-D EINK_DISPLAY_MODEL=GxEPD2_290_BN8 | ||
-D EINK_WIDTH=296 | ||
-D EINK_HEIGHT=128 | ||
-D USE_EINK_DYNAMICDISPLAY ; Enable Dynamic EInk | ||
-D EINK_LIMIT_FASTREFRESH=10 ; How many consecutive fast-refreshes are permitted | ||
-D EINK_LIMIT_RATE_BACKGROUND_SEC=30 ; Minimum interval between BACKGROUND updates | ||
-D EINK_LIMIT_RATE_RESPONSIVE_SEC=1 ; Minimum interval between RESPONSIVE updates | ||
-D EINK_HASQUIRK_GHOSTING ; Display model is identified as "prone to ghosting" | ||
-D EINK_HASQUIRK_WEAKFASTREFRESH ; Pixels set with fast-refresh are easy to clear, disrupted by sunlight | ||
; -D EINK_LIMIT_GHOSTING_PX=2000 ; How much image ghosting is tolerated | ||
; -D EINK_BACKGROUND_USES_FAST ; (If enabled) don't redraw RESPONSIVE frames at next BACKGROUND update | ||
|
||
lib_deps = | ||
${esp32s3_base.lib_deps} | ||
https://github.com/meshtastic/GxEPD2#b202ebfec6a4821e098cf7a625ba0f6f2400292d | ||
https://github.com/meshtastic/GxEPD2#448c8538129fde3d02a7cb5e6fc81971ad92547f | ||
lewisxhe/PCF8563_Library@^1.0.1 | ||
upload_speed = 115200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters