acassis commented on code in PR #10262:
URL: https://github.com/apache/nuttx/pull/10262#discussion_r1303558199
##########
drivers/serial/Kconfig:
##########
@@ -747,4 +747,43 @@ config UART_BTH4_NPOLLWAITERS
endif # UART_BTH4
+menuconfig UART_BTH5
+ bool "BT H5 uart pseudo device"
+ default n
+ depends on DRIVERS_BLUETOOTH
+ ---help---
+ Enable support for Bluetooth H5 UART Pseudo Device(eg.
/dev/ttyHCI).
+ This instantiates a serial-like interface over an existing
bluetooth
+ controller via HCI interface. Useful for external Bluetooth
+ stacks working this way instead of the socket based interface.
+
+if UART_BTH5
+
+config UART_BTH5_TXBUFSIZE
+ int "BT H5 uart TX buffer size"
Review Comment:
```suggestion
int "BT H5 UART TX Buffer Size"
##########
drivers/serial/Kconfig:
##########
@@ -747,4 +747,43 @@ config UART_BTH4_NPOLLWAITERS
endif # UART_BTH4
+menuconfig UART_BTH5
+ bool "BT H5 uart pseudo device"
+ default n
+ depends on DRIVERS_BLUETOOTH
+ ---help---
+ Enable support for Bluetooth H5 UART Pseudo Device(eg.
/dev/ttyHCI).
+ This instantiates a serial-like interface over an existing
bluetooth
+ controller via HCI interface. Useful for external Bluetooth
+ stacks working this way instead of the socket based interface.
+
+if UART_BTH5
+
+config UART_BTH5_TXBUFSIZE
+ int "BT H5 uart TX buffer size"
+ default 2048
+ ---help---
+ H5 UART TX buffer size. Default: 2048
+
+config UART_BTH5_TXWIN
+ int "BT H5 uart TX window size"
+ default 4
+ ---help---
+ H5 UART TX window size. Default: 4
+
+config UART_BTH5_RXBUFSIZE
+ int "BT H5 uart RX buffer size"
Review Comment:
```suggestion
int "BT H5 UART RX Buffer Size"
##########
drivers/serial/Kconfig:
##########
@@ -747,4 +747,43 @@ config UART_BTH4_NPOLLWAITERS
endif # UART_BTH4
+menuconfig UART_BTH5
+ bool "BT H5 uart pseudo device"
Review Comment:
```suggestion
bool "BT H5 UART Pseudo Device"
##########
drivers/serial/Kconfig:
##########
@@ -747,4 +747,43 @@ config UART_BTH4_NPOLLWAITERS
endif # UART_BTH4
+menuconfig UART_BTH5
+ bool "BT H5 uart pseudo device"
+ default n
+ depends on DRIVERS_BLUETOOTH
+ ---help---
+ Enable support for Bluetooth H5 UART Pseudo Device(eg.
/dev/ttyHCI).
+ This instantiates a serial-like interface over an existing
bluetooth
+ controller via HCI interface. Useful for external Bluetooth
+ stacks working this way instead of the socket based interface.
+
+if UART_BTH5
+
+config UART_BTH5_TXBUFSIZE
+ int "BT H5 uart TX buffer size"
+ default 2048
+ ---help---
+ H5 UART TX buffer size. Default: 2048
+
+config UART_BTH5_TXWIN
+ int "BT H5 uart TX window size"
Review Comment:
```suggestion
int "BT H5 UART TX Window Size"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]