You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 regels
619 B

  1. menu "LilyBook Configuration"
  2. config SPIFFS_BASE_ADDR
  3. hex "SPIFFS Base address"
  4. # range 0x100000 0x1FFE000
  5. default 0x180000
  6. help
  7. Starting address of the SPIFFS area in ESP32 Flash
  8. Write the address in hex format, 0x180000
  9. config SPIFFS_SIZE
  10. int "SPIFFS Size in bytes"
  11. range 262144 2097152
  12. default 1048576
  13. config SPIFFS_LOG_BLOCK_SIZE
  14. int "SPIFFS Logical block size"
  15. range 4098 65536
  16. default 8192
  17. config SPIFFS_LOG_PAGE_SIZE
  18. int "SPIFFS Logical page size"
  19. range 256 2048
  20. default 256
  21. help
  22. Set it to the phisycal page size og the used SPI Flash chip.
  23. endmenu