cmdline (merge-intel): don't free the cmdline struct in cmdline_interact()
[libcmdline.git] / Kconfig2
1
2 menu COMM
3         prompt "Communication modules"
4         ---help---
5         Contains communication modules: uart, spi, i2c, ...
6
7 comment "List of all drivers"
8
9 config COMM_UART
10         prompt "Uart module"
11         requires BASE_CIRBUF
12         ---help---
13         This module provide functions to use the embedded UART or USART in
14         the AVR. With this module, it is more easy to configure it, and
15         data can be emited on interruption. The uart module also contains
16         a fifo for emission and reception (configurable in uart_config.h).
17
18 menuconfig COMM_I2C
19         prompt "i2c"
20         ---help---
21         This module provide functions to use the embedded I2C (TWI
22         interface) in the AVR.
23
24 config COMM_I2C_CREATE_CONFIG
25         prompt "Create Default i2c config"
26         ---help---
27         Create a i2c_config.h file if it does not exist, with a default
28         configuration.
29
30 config COMM_I2C_MASTER
31         prompt "Allow master mode"
32
33 config COMM_I2C_MULTIMASTER
34         prompt "Allow multimaster mode"
35         requires COMM_I2C_MASTER
36
37 endmenuconfig # COMM_I2C
38
39 endmenu # COMM