Ubiquitous/RT-Thread_Fusion_XiUOS/aiit_board/xidatong-riscv64/applications/:Add tcp_client.c、 tcp_client.h、tcp_server.c、tcp_server.h and update the SConscript

This commit is contained in:
Beichen
2022-08-03 10:21:18 +08:00
parent 38c2864c73
commit 4a39d325b2
5 changed files with 343 additions and 0 deletions
@@ -10,6 +10,11 @@ CPPPATH = [cwd]
if GetDepend('BSP_USING_LCD'):
src += ['lcd_test.c']
## 设置 tcp_client.c 和 tcp_server.c 的依赖宏
if GetDepend('PKG_USING_WIZNET'):
src += ['tcp_client.c']
src += ['tcp_server.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')