Kconfig 425 B

123456789101112131415161718192021
  1. menu "RT-Thread board config"
  2. config RT_BOARD_NAME
  3. string "the board name you use"
  4. default "rk2108_evb"
  5. config RT_RUN_MEM_BASE
  6. hex "the memory base address you use"
  7. default 0x20000000
  8. help
  9. Set RK2108 SRAM MEM BASE.
  10. config RT_RUN_MEM_SIZE
  11. hex "the memory size you use"
  12. default 0x00100000
  13. help
  14. Set RK2108 SRAM MEM SIZE
  15. source "$BSP_DIR/board/$RT_BOARD_NAME/Kconfig"
  16. endmenu