Further fixes and adjustments for getting UART working on esp32 boards

This commit is contained in:
Lorow
2025-11-04 00:55:12 +01:00
parent 3b66642a83
commit 68cac0b3ac
20 changed files with 129 additions and 100 deletions

View File

@@ -108,13 +108,25 @@ menu "OpenIris: WiFi Configuration"
endmenu
menu "OpenIris: Serial Communication Settings"
config UART_PORT_NUMER
config UART_PORT_NUMBER
int "UART Port number"
default 1
range 1 4
default 0
range 0 4
help
The UART port to use for communication
config UART_RX_PIN
int "UART RX PIN number"
default -1
help
The UART RX pin to use for communication. If set to -1 we won't override it. It will be treated as NO_CHANGE
config UART_TX_PIN
int "UART TX PIN number"
default -1
help
The UART TX pin to use for communication. If set to -1 we won't override it. It will be treated as NO_CHANGE
endmenu
menu "OpenIris: LED Configuration"