ESP32_BLE_UART/main/Kconfig.projbuild

31 lines
703 B
Plaintext
Raw Normal View History

2025-09-30 13:56:56 +08:00
menu "UART ENS1 Configuration"
config EXAMPLE_UART_TXD
int "UART TXD Pin"
range 0 48
default 4
help
GPIO number for UART TXD pin (GPIO4).
config EXAMPLE_UART_RXD
int "UART RXD Pin"
range 0 48
default 5
help
GPIO number for UART RXD pin (GPIO5).
config EXAMPLE_UART_BAUD_RATE
int "UART Baud Rate"
range 1200 2000000
default 115200
help
UART baud rate for communication with ENS1 chip.
config EXAMPLE_TASK_STACK_SIZE
int "Task Stack Size"
range 1024 16384
default 4096
help
Stack size for UART tasks.
endmenu