mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-23 20:02:33 +08:00
Some checks failed
ToolsCI / Tools (push) Has been cancelled
AutoTestCI / components/cpp11 (push) Has been cancelled
AutoTestCI / kernel/atomic (push) Has been cancelled
AutoTestCI / kernel/atomic/riscv64 (push) Has been cancelled
AutoTestCI / kernel/atomic_c11 (push) Has been cancelled
AutoTestCI / kernel/atomic_c11/riscv64 (push) Has been cancelled
AutoTestCI / kernel/device (push) Has been cancelled
AutoTestCI / kernel/ipc (push) Has been cancelled
AutoTestCI / kernel/irq (push) Has been cancelled
AutoTestCI / kernel/mem (push) Has been cancelled
AutoTestCI / kernel/mem/riscv64 (push) Has been cancelled
AutoTestCI / kernel/thread (push) Has been cancelled
AutoTestCI / kernel/timer (push) Has been cancelled
AutoTestCI / rtsmart/aarch64 (push) Has been cancelled
AutoTestCI / rtsmart/arm (push) Has been cancelled
AutoTestCI / rtsmart/riscv64 (push) Has been cancelled
AutoTestCI / components/utest (push) Has been cancelled
RT-Thread BSP Static Build Check / 🔍 Summary of Git Diff Changes (push) Has been cancelled
RT-Thread BSP Static Build Check / ${{ matrix.legs.RTT_BSP }} (push) Has been cancelled
RT-Thread BSP Static Build Check / collect-artifacts (push) Has been cancelled
pkgs_test / change (push) Has been cancelled
utest_auto_run / AARCH64-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / A9-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / RISCV-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / XUANTIE-rtsmart :default.cfg (push) Has been cancelled
utest_auto_run / AARCH64 :default.cfg (push) Has been cancelled
utest_auto_run / A9 :default.cfg (push) Has been cancelled
utest_auto_run / A9-smp :default.cfg (push) Has been cancelled
utest_auto_run / RISCV :default.cfg (push) Has been cancelled
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
menu "Hardware Drivers Config"
|
|
|
|
menu "Onboard Peripheral Drivers"
|
|
|
|
endmenu
|
|
|
|
menu "On-chip Peripheral Drivers"
|
|
|
|
config BSP_USING_GPIO
|
|
bool "Enable GPIO"
|
|
select RT_USING_PIN
|
|
default y
|
|
|
|
menuconfig BSP_USING_UART
|
|
bool "Enable UART"
|
|
default y
|
|
select RT_USING_SERIAL
|
|
if BSP_USING_UART
|
|
config BSP_STM32_UART_V1_TX_TIMEOUT
|
|
int "UART TX timeout"
|
|
default 6000
|
|
depends on RT_USING_SERIAL_V1
|
|
|
|
menuconfig BSP_USING_UART1
|
|
bool "Enable UART1"
|
|
default y
|
|
if BSP_USING_UART1
|
|
config BSP_UART1_RX_USING_DMA
|
|
bool "Enable UART1 RX DMA"
|
|
depends on BSP_USING_UART1 && RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_UART1_TX_USING_DMA
|
|
bool "Enable UART1 TX DMA"
|
|
depends on BSP_USING_UART1 && RT_SERIAL_USING_DMA
|
|
default n
|
|
|
|
config BSP_UART1_RX_BUFSIZE
|
|
int "Set UART1 RX buffer size"
|
|
range 64 65535
|
|
depends on RT_USING_SERIAL_V2
|
|
default 256
|
|
|
|
config BSP_UART1_TX_BUFSIZE
|
|
int "Set UART1 TX buffer size"
|
|
range 0 65535
|
|
depends on RT_USING_SERIAL_V2
|
|
default 0
|
|
|
|
config BSP_UART1_DMA_PING_BUFSIZE
|
|
int "Set UART1 RX DMA ping-pong buffer size"
|
|
range 32 65535
|
|
depends on RT_USING_SERIAL_V2 && BSP_UART1_RX_USING_DMA
|
|
default 64
|
|
endif
|
|
|
|
endif
|
|
|
|
source "$(BSP_DIR)/../libraries/HAL_Drivers/drivers/Kconfig"
|
|
|
|
endmenu
|
|
|
|
menu "Board extended module Drivers"
|
|
|
|
endmenu
|
|
|
|
endmenu
|