Kconfig 747 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. mainmenu "RT-Thread Project Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "rt-thread"
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$PKGS_DIR/Kconfig"
  16. config BOARD_K210_EVB
  17. bool
  18. select ARCH_RISCV64
  19. select ARCH_RISCV_FPU_S
  20. select PKG_USING_KENDRYTE_SDK
  21. select RT_USING_COMPONENTS_INIT
  22. select RT_USING_USER_MAIN
  23. default y
  24. source "driver/Kconfig"
  25. config __STACKSIZE__
  26. int "stack size for interrupt"
  27. default 4096
  28. config RT_AI_USE_K210
  29. bool "RT-AK use the k210-KPU backend"
  30. default y
  31. # Micropython extend modules
  32. source "extmods/Kconfig"