mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 13:53:31 +08:00
f6c4572299
2.Add Kconfig file 3.Delete some unnecessary files and directories
17 lines
335 B
Python
17 lines
335 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
|
|
# add serial driver code
|
|
if GetDepend('BSP_USING_UART0') or GetDepend('BSP_USING_UART1'):
|
|
src += ['drv_uart.c']
|
|
if GetDepend('BSP_USING_GPIO'):
|
|
src += ['drv_gpio.c']
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|