hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
menu "ANALOGY drivers"
 
config XENO_DRIVERS_ANALOGY
   tristate "ANALOGY interface"
   help
 
   ANALOGY is a framework aimed at supporting data acquisition
   devices.
 
config XENO_DRIVERS_ANALOGY_DEBUG
       depends on XENO_DRIVERS_ANALOGY
       bool "Analogy debug trace"
       default n
       help
 
       Enable debugging traces in Analogy so as to monitor Analogy's
       core and drivers behaviours.
 
config XENO_DRIVERS_ANALOGY_DEBUG_FTRACE
       depends on XENO_DRIVERS_ANALOGY_DEBUG
       bool "Analogy debug ftrace"
       default n
       help
 
       Route the Analogy a4l_dbg and a4l_info statements to /sys/kernel/debug/
 
config XENO_DRIVERS_ANALOGY_DEBUG_LEVEL
       depends on XENO_DRIVERS_ANALOGY_DEBUG
       int "Analogy core debug level threshold"
       default 0
       help
 
       Define the level above which the debugging traces will not be
       displayed.
 
       WARNING: this threshold is only applied on the Analogy
       core. That will not affect the driver.
 
config XENO_DRIVERS_ANALOGY_DRIVER_DEBUG_LEVEL
       depends on XENO_DRIVERS_ANALOGY_DEBUG
       int "Analogy driver debug level threshold"
       default 0
       help
 
       Define the level above which the debugging traces will not be
       displayed.
 
       WARNING: this threshold is only applied on the Analogy
       driver. That will not affect the core.
 
source "drivers/xenomai/analogy/testing/Kconfig"
source "drivers/xenomai/analogy/intel/Kconfig"
source "drivers/xenomai/analogy/national_instruments/Kconfig"
source "drivers/xenomai/analogy/sensoray/Kconfig"
 
endmenu