2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
config EXAMPLES_CAN
|
|
|
|
bool "CAN example"
|
|
|
|
default n
|
2015-08-18 21:25:30 +02:00
|
|
|
depends on CAN && LIB_BOARDCTL
|
|
|
|
select BOARDCTL_CANINIT
|
2012-04-13 04:14:09 +02:00
|
|
|
---help---
|
|
|
|
Enable the CAN example
|
|
|
|
|
|
|
|
if EXAMPLES_CAN
|
2015-08-17 19:07:39 +02:00
|
|
|
|
|
|
|
config EXAMPLES_CAN_NMSGS
|
|
|
|
int "Number of Messages"
|
|
|
|
default 32
|
|
|
|
---help---
|
|
|
|
The number of CAN messages to send before returning
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|
|
|
|
|