Skip to content
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
21 changes: 21 additions & 0 deletions components/fal/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,26 @@ if RT_USING_FAL
default "norflash0"
endif

config FAL_DEV_NAME_MAX
int "FAL device/partition name max length"
default 24
range 8 128
help
Configure the maximum length of flash/partition device name used by FAL.
This value corresponds to macro FAL_DEV_NAME_MAX.
Increase it if your flash device name or partition name is longer.
Note: Larger value may increase memory usage in some implementations.

config FAL_DEV_BLK_MAX
int "FAL max flash device blocks"
default 6
range 1 32
help
Configure the maximum number of flash device blocks managed by FAL.
This value corresponds to macro FAL_DEV_BLK_MAX.
If you have multiple flash devices (onchip/spi-nor/spi-nand, etc.)
or multiple underlying blocks, increase this value accordingly.
Note: Larger value may increase RAM/ROM usage.

endif