[bsp][stm32l475] move arduino to application

This commit is contained in:
Meco Man 2021-12-24 02:18:07 -05:00
parent dcce9886e9
commit 787b854f27
5 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,6 @@ src = ['main.c']
if GetDepend(['PKG_USING_NRF24L01']):
src += ['nrf24l01_init.c']
if GetDepend(['RT_USING_ARDUINO']):
src += ['arduino_main.cpp']
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)

View File

@ -6,4 +6,7 @@ inc = [cwd]
group = DefineGroup('Arduino', src, depend = ['RT_USING_ARDUINO'], CPPPATH = inc)
src = ['arduino_main.cpp']
group = DefineGroup('Applications', src, depend = ['RT_USING_ARDUINO'])
Return('group')