1c4328e5a9
1. Add 980 drv_usbd. 2. EMAC - move MDC CLK divider before EMAC initialization. 3. Correct NUC980 and M480 CAN RX_MSG_ID_INDEX definition. 4. add USBD cdc demo - vcom_echo. 5. mnt - add mount_table definition.
15 lines
294 B
Python
15 lines
294 B
Python
# RT-Thread building script for component
|
|
|
|
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
group = []
|
|
|
|
# USB driver constrain
|
|
group = DefineGroup('nuc980_rttport', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|