File tree Expand file tree Collapse file tree 5 files changed +454
-0
lines changed Expand file tree Collapse file tree 5 files changed +454
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ zephyr_library_sources_ifdef(CONFIG_UART_APBUART uart_apbuart.c)
21
21
zephyr_library_sources_ifdef (CONFIG_UART_BCM2711_MU uart_bcm2711.c )
22
22
zephyr_library_sources_ifdef (CONFIG_UART_BT uart_bt.c )
23
23
zephyr_library_sources_ifdef (CONFIG_UART_CC13XX_CC26XX uart_cc13xx_cc26xx.c )
24
+ zephyr_library_sources_ifdef (CONFIG_UART_CC23X0 uart_cc23x0.c )
24
25
zephyr_library_sources_ifdef (CONFIG_UART_CC32XX uart_cc32xx.c )
25
26
zephyr_library_sources_ifdef (CONFIG_UART_CDNS uart_cdns.c )
26
27
zephyr_library_sources_ifdef (CONFIG_UART_CMSDK_APB uart_cmsdk_apb.c )
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ rsource "Kconfig.b91"
164
164
rsource "Kconfig.bcm2711"
165
165
rsource "Kconfig.bt"
166
166
rsource "Kconfig.cc13xx_cc26xx"
167
+ rsource "Kconfig.cc23x0"
167
168
rsource "Kconfig.cc32xx"
168
169
rsource "Kconfig.cdns"
169
170
rsource "Kconfig.cmsdk_apb"
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 Texas Instruments Incorporated
2
+ # Copyright (c) 2024 BayLibre, SAS
3
+ #
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ config UART_CC23X0
7
+ bool "TI SimpleLink CC23x0 UART driver"
8
+ default y
9
+ depends on DT_HAS_TI_CC23X0_UART_ENABLED
10
+ select SERIAL_HAS_DRIVER
11
+ select SERIAL_SUPPORT_INTERRUPT
12
+ select PINCTRL
13
+ help
14
+ Enable the TI SimpleLink CC23x0 UART driver.
You can’t perform that action at this time.
0 commit comments