apps/examples/tcp_ipc_server/Makefile: Fix mistakes in comments

Fix mistakes in comments
This commit is contained in:
simbit18 2023-03-06 15:51:09 +01:00 committed by Xiang Xiao
parent 2792127849
commit 7c803d28e6

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# apps/examples/SERVIDOR/Make.defs # apps/examples/tcp_ipc_server/Makefile
# #
# Licensed to the Apache Software Foundation (ASF) under one or more # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with # contributor license agreements. See the NOTICE file distributed with
@ -20,14 +20,14 @@
include $(APPDIR)/Make.defs include $(APPDIR)/Make.defs
# SERVIDOR built-in application info # Server TCP built-in application info
PROGNAME = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_PROGNAME) PROGNAME = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_PRIORITY) PRIORITY = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_STACKSIZE) STACKSIZE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER) MODULE = $(CONFIG_EXAMPLES_TCP_IPC_SERVER)
# SERVIDOR Example # Server TCP Example
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/examples/tcp_ipc_server/lorawan CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/examples/tcp_ipc_server/lorawan
CSRCS = uart_lorawan_layer.c protocol.c CSRCS = uart_lorawan_layer.c protocol.c