You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
449 B
Python
20 lines
449 B
Python
10 months ago
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
if GetDepend(['AT_DEVICE_M26']):
|
||
|
src = Glob('at_socket_m26.c')
|
||
|
|
||
|
if GetDepend(['AT_DEVICE_EC20']):
|
||
|
src = Glob('at_socket_ec20.c')
|
||
|
|
||
|
if GetDepend(['AT_DEVICE_ESP8266']):
|
||
|
src = Glob('at_socket_esp8266.c')
|
||
|
|
||
|
if GetDepend(['AT_DEVICE_NOT_SELECTED']):
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
group = DefineGroup('at_device', src, depend = ['PKG_USING_AT_DEVICE','AT_USING_SOCKET'], CPPPATH = [cwd])
|
||
|
|
||
|
Return('group')
|