forked from wellenvogel/esp32-nmea2000
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change back to standard watchdog timeout
- Loading branch information
1 parent
9167586
commit abb3d56
Showing
2 changed files
with
8 additions
and
6 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
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 |
---|---|---|
|
@@ -5,11 +5,13 @@ | |
default_envs = obp60_s3 | ||
[env:obp60_s3] | ||
platform = [email protected] | ||
#board = obp60_s3_n8 #ESP32-S3, 8MB flash, no PSRAM | ||
#board = obp60_s3_n16 #ESP32-S3,16MB flash, no PSRAM, zero series | ||
#board = obp60_s3_n8r8 #ESP32-S3, 8MB flash, 8MB PSRAM | ||
board = obp60_s3_n16r8 #ESP32-S3, 16MB flash, 8MB PSRAM, production series | ||
board_build.variants_dir = variants | ||
#board = obp60_s3_n8 #ESP32-S3 N8, 8MB flash, no PSRAM | ||
#board = obp60_s3_n16 #ESP32-S3 N16,16MB flash, no PSRAM, zero series | ||
#board = obp60_s3_n8r8 #ESP32-S3 N8R8, 8MB flash, 8MB PSRAM | ||
board = obp60_s3_n16r8 #ESP32-S3 N16R8, 16MB flash, 8MB PSRAM, production series | ||
#board_build.partitions = default_8MB.csv #ESP32-S3 N8, 8MB flash | ||
board_build.partitions = default_16MB.csv #ESP32-S3 N16, 16MB flash | ||
framework = arduino | ||
lib_deps = | ||
${env.lib_deps} | ||
|
@@ -41,7 +43,7 @@ build_flags= | |
# -D DISPLAY_GYE042A8 #alternativ E-Ink display from Genyo Optical, R10 2.2 ohm | ||
# -D DISPLAY_SE0420NQ04 #alternativ E-Ink display from SID Technology, R10 2.2 ohm | ||
${env.build_flags} | ||
CONFIG_ESP_TASK_WDT_TIMEOUT_S = 10 #Task Watchdog timeout period (seconds) [1...60] 5 default | ||
#CONFIG_ESP_TASK_WDT_TIMEOUT_S = 10 #Task Watchdog timeout period (seconds) [1...60] 5 default | ||
upload_port = /dev/ttyACM0 | ||
upload_protocol = esptool | ||
upload_speed = 230400 | ||
|