4c63055289
we no longer use hbird_eval to stand for board using by nuclei fpga development boards, we are now using nuclei_fpga_eval to stand for it. nowadays the fpga bitstream cpu freq is 16MHz, and uart tx/rx both works at 115200bps, so we change the baudrate to 115200bps Signed-off-by: Huaqi Fang <578567190@qq.com>
19 lines
295 B
Python
19 lines
295 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers.
|
|
src = Split("""
|
|
""")
|
|
|
|
if GetDepend(['RT_USING_SERIAL']):
|
|
src += ['drv_uart.c']
|
|
|
|
path = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
|
|
|
|
Return('group')
|