This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push: new 3a6775c8a examples/tcp_ipc_server: fix wrong file path typo 3a6775c8a is described below commit 3a6775c8acb989522b75e0908c9c909e493e01d6 Author: Junbo Zheng <zhengjun...@xiaomi.com> AuthorDate: Fri Nov 18 14:31:46 2022 +0800 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 <zhengjun...@xiaomi.com> --- examples/tcp_ipc_server/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tcp_ipc_server/Makefile b/examples/tcp_ipc_server/Makefile index f181bea62..06b15db6c 100644 --- a/examples/tcp_ipc_server/Makefile +++ b/examples/tcp_ipc_server/Makefile @@ -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