-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig
41 lines (32 loc) · 906 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
config USR_DRV_CAN
bool "Userspace CAN driver"
default n
---help---
Support for STM32F4 CAN hardware IP.
if USR_DRV_CAN
menu "Userspace CAN driver options"
choice
prompt "Kind of CAN bus targeted"
config CAN_TARGET_VEHICLES
bool "Support for CAN buses on vehicles"
help
Select the bit rate configuration adapted to a CAN bus in a vehicle.
config CAN_TARGET_AUTOMATONS
bool "Support for CAN buses on industrial automation systems"
help
Select the bit rate configuration adapted to a CAN bus in a industrial automaton.
endchoice
config APB1_DIVISOR
int "APB1 bus divisor"
range 1 5
default 4
help
Specify the APB1 Bus clock divisor
config USR_DRV_CAN_DEBUG
bool "Activate CAN driver debugging"
default n
---help---
Pretty print various events and data handled by the CAN driver
on the kernel serial interface
endmenu
endif