examples/tcp_ipc_server: fix wrong file path typo

The lorawan folder is under the path of examples/tcp_ipc_server, the server_tcp folder is not exist here, fix it.

Signed-off-by: Junbo Zheng <zhengjunbo1@xiaomi.com>
This commit is contained in:
Junbo Zheng 2022-11-18 14:31:46 +08:00 committed by Xiang Xiao
parent ed5cadb7cb
commit 3a6775c8ac

View File

@ -28,7 +28,7 @@ STACKSIZE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER)
# SERVIDOR Example
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/examples/server_tcp/lorawan
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/examples/tcp_ipc_server/lorawan
CSRCS = uart_lorawan_layer.c protocol.c
MAINSRC = tcp_ipc_server_main.c