Kconfig 614 B

1234567891011121314151617181920212223
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if ARCH_BOARD_SAM4S_XPLAINED_PRO
  6. config SAM4S_XPLAINED_PRO_CDCACM_DEVMINOR
  7. int "CDC/ACM Device Minor"
  8. default 0
  9. depends on SAM34_UDP && USBDEV && CDCACM
  10. config SAM4S_XPLAINED_PRO_SCHED_TIMER_DEVPATH
  11. string "Scheduler Timer Device Path"
  12. default "/dev/rtt0"
  13. depends on TIMER && SYSTEMTICK_EXTCLK
  14. config SAM4S_XPLAINED_PRO_CPULOAD_TIMER_DEVPATH
  15. string "CPU Load Timer Device Path"
  16. default "/dev/tc0"
  17. depends on TIMER && SCHED_CPULOAD && SCHED_CPULOAD_EXTCLK
  18. endif