1menu "CIR Devices"
2
3config DRIVERS_CIR
4    bool "enable CIR driver"
5        default y
6
7menu "CIR option features"
8
9config DRIVERS_CIR_DEBUG
10    bool "support CIR debug"
11    select DRIVERS_CIR
12    default n
13
14config DRIVERS_CIR_TEST
15    bool "CIR test case"
16    select DRIVERS_CIR
17    default n
18
19config HAL_TEST_CIR
20    bool "CIR TEST CASE"
21    depends on DRIVERS_CIR
22    default n
23
24endmenu
25
26endmenu
27