Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: comment in sdkconfig.defaults #84

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ CONFIG_ESP_TASK_WDT_EN=n

CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y
CONFIG_ESPTOOLPY_FLASHSIZE="16MB"
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y # over twice as fast as DIO
# over twice as fast as DIO
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y

CONFIG_FREERTOS_HZ=1000

Expand Down Expand Up @@ -44,8 +45,10 @@ CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
# FATFS config
# Support long file names using buffer in heap
CONFIG_FATFS_LFN_HEAP=y
CONFIG_FATFS_VFS_FSTAT_BLKSIZE=16384 # increase speed of buffered reads
CONFIG_FATFS_USE_FASTSEEK=y # increase speed of seeking for read-mode files
# increase speed of buffered reads
CONFIG_FATFS_VFS_FSTAT_BLKSIZE=16384
# increase speed of seeking for read-mode files
CONFIG_FATFS_USE_FASTSEEK=y

#
# USB config
Expand Down