Kconfig 466 B

123456789101112131415161718192021222324
  1. menuconfig RT_USING_ADT
  2. bool "Enable ADT(abstract data type)"
  3. default y if ARCH_MM_MMU
  4. default n
  5. config RT_USING_ADT_AVL
  6. bool "AVL tree"
  7. depends on RT_USING_ADT
  8. default y
  9. config RT_USING_ADT_BITMAP
  10. bool "Bitmap"
  11. depends on RT_USING_ADT
  12. default y
  13. config RT_USING_ADT_HASHMAP
  14. bool "HashMap"
  15. depends on RT_USING_ADT
  16. default y
  17. config RT_USING_ADT_REF
  18. bool "Reference API"
  19. depends on RT_USING_ADT
  20. default y