zephyr/samples/subsys/canbus/isotp/Kconfig
Henrik Brix Andersen 5d5249d85b drivers: can: unify spelling of CAN Flexible Data-rate abbreviation
Unify spelling of CAN Flexible Data-rate abbreviation to "CAN FD" instead
of "CAN-FD". The former aligns with the CAN in Automation (CiA)
recommendation.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
2023-11-01 11:17:17 +00:00

34 lines
721 B
Plaintext

# Private config options to the ISO-TP sample
# Copyright (c) 2023 Vestas Wind Systems A/S
# SPDX-License-Identifier: Apache-2.0
mainmenu "ISO-TP sample"
config SAMPLE_LOOPBACK_MODE
bool "Use CAN loopback mode"
help
Set the CAN controller to loopback mode. This allows testing without a second board.
config SAMPLE_RX_THREAD_STACK_SIZE
int "RX threads stack size"
default 1024
help
Stack size (in bytes) used for the RX threads.
config SAMPLE_RX_THREAD_PRIORITY
int "RX threads priority"
default 2
help
Priority used for the RX threads.
config SAMPLE_CAN_FD_MODE
bool "Use CAN FD"
select CAN_FD_MODE
config ISOTP_RX_BUF_COUNT
default 4 if SAMPLE_CAN_FD_MODE
default 2
source "Kconfig.zephyr"