Kconfig 543 B

123456789101112131415161718
  1. menuconfig RT_USING_PIN
  2. bool "Using Generic GPIO device drivers"
  3. default y
  4. help
  5. Enable the generic GPIO/pin driver interface so BSPs can expose pin mode,
  6. read/write, and interrupt capabilities through `rt_pin_*` APIs. Most
  7. drivers depend on this; disable only when building extremely tiny images
  8. with no GPIO control.
  9. config RT_PIN_PL061
  10. bool "ARM PL061"
  11. depends on RT_USING_DM
  12. depends on RT_USING_PIN
  13. default n
  14. if RT_USING_DM && RT_USING_PIN
  15. osource "$(SOC_DM_PIN_DIR)/Kconfig"
  16. endif