From 48baadfa9f7829ff528eccdb7de17d01fece9e4c Mon Sep 17 00:00:00 2001 From: sunghan Date: Wed, 10 May 2017 17:26:58 +0900 Subject: [PATCH] modify comments on example Makefile fix wrong comments --- apps/examples/artik_demo/Makefile | 4 ++-- apps/examples/dnsclient_test/Makefile | 4 ++-- apps/examples/easysetup/Makefile | 4 ++-- apps/examples/eeprom_test/Makefile | 2 +- apps/examples/mdns_test/Makefile | 4 ++-- apps/examples/mqtt_test/Makefile | 4 ++-- apps/examples/ntpclient_test/Makefile | 4 ++-- apps/examples/proc_test/Makefile | 2 +- apps/examples/slsiwifi/Makefile | 4 ++++ apps/examples/smart/Makefile | 2 ++ apps/examples/sysio_test/Makefile | 4 ++-- apps/examples/telnetd/Makefile | 4 ++-- apps/examples/tls_client/Makefile | 1 + apps/examples/tls_selftest/Makefile | 1 + apps/examples/tls_server/Makefile | 1 + apps/examples/wakaama_client/Makefile | 4 ++-- apps/examples/webclient/Makefile | 4 +++- apps/examples/webserver/Makefile | 2 +- apps/examples/workqueue/Makefile | 4 +++- 19 files changed, 36 insertions(+), 23 deletions(-) diff --git a/apps/examples/artik_demo/Makefile b/apps/examples/artik_demo/Makefile index 251ed11..7bcb7ec 100644 --- a/apps/examples/artik_demo/Makefile +++ b/apps/examples/artik_demo/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = artik_demo PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 20480 -# Hello, World! Example +# artik demo example ASRCS = diff --git a/apps/examples/dnsclient_test/Makefile b/apps/examples/dnsclient_test/Makefile index 7785d76..3bfbfac 100644 --- a/apps/examples/dnsclient_test/Makefile +++ b/apps/examples/dnsclient_test/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = dnsclient PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 -# Hello, World! Example +# dnsclient test example ASRCS = CSRCS = diff --git a/apps/examples/easysetup/Makefile b/apps/examples/easysetup/Makefile index bfbfea2..b5faf92 100644 --- a/apps/examples/easysetup/Makefile +++ b/apps/examples/easysetup/Makefile @@ -37,14 +37,14 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = easysetup PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 THREADEXEC = TASH_EXECMD_ASYNC -# Hello, World! Example +# easysetup example ASRCS = CSRCS = wifi_api.c diff --git a/apps/examples/eeprom_test/Makefile b/apps/examples/eeprom_test/Makefile index e05d4f1..3ea1d7d 100644 --- a/apps/examples/eeprom_test/Makefile +++ b/apps/examples/eeprom_test/Makefile @@ -54,7 +54,7 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! Example in tash +# eeprom test example ASRCS = CSRCS = diff --git a/apps/examples/mdns_test/Makefile b/apps/examples/mdns_test/Makefile index 42252dc..dc1aec5 100644 --- a/apps/examples/mdns_test/Makefile +++ b/apps/examples/mdns_test/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = mdns PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 -# Hello, World! Example +# mdns test example ASRCS = CSRCS = diff --git a/apps/examples/mqtt_test/Makefile b/apps/examples/mqtt_test/Makefile index d35bb3e..e11476d 100644 --- a/apps/examples/mqtt_test/Makefile +++ b/apps/examples/mqtt_test/Makefile @@ -40,13 +40,13 @@ include $(APPDIR)/Make.defs #MQTT_TOP=$(APPDIR)/netutils/mqtt #include $(MQTT_TOP)/config.mk -# Hello, World! built-in application info +# built-in application info APPNAME = mqtt PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 20480 -# Hello, World! Example +# mqtt test example ASRCS = CSRCS = diff --git a/apps/examples/ntpclient_test/Makefile b/apps/examples/ntpclient_test/Makefile index cc0d4a4..840b046 100644 --- a/apps/examples/ntpclient_test/Makefile +++ b/apps/examples/ntpclient_test/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = ntpclient PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 -# Hello, World! Example +# ntpclient test example ASRCS = CSRCS = diff --git a/apps/examples/proc_test/Makefile b/apps/examples/proc_test/Makefile index 4cf8577..27b8bbb 100644 --- a/apps/examples/proc_test/Makefile +++ b/apps/examples/proc_test/Makefile @@ -54,7 +54,7 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Proc_test Example +# procfs test Example ASRCS = CSRCS = diff --git a/apps/examples/slsiwifi/Makefile b/apps/examples/slsiwifi/Makefile index ce1b390..a920d00 100644 --- a/apps/examples/slsiwifi/Makefile +++ b/apps/examples/slsiwifi/Makefile @@ -57,10 +57,14 @@ include $(APPDIR)/Make.defs CONFIG_EXAMPLES_SLSIWIFI_PRIORITY ?= SCHED_PRIORITY_DEFAULT CONFIG_EXAMPLES_SLSIWIFI_STACKSIZE ?= 2048 +# built-in application info + APPNAME = slsiwifi PRIORITY = $(CONFIG_EXAMPLES_SLSIWIFI_PRIORITY) STACKSIZE = $(CONFIG_EXAMPLES_SLSIWIFI_STACKSIZE) +# wifi test example using slsi wifi api + ASRCS = CSRCS += \ output_functions.c \ diff --git a/apps/examples/smart/Makefile b/apps/examples/smart/Makefile index 32b07a6..690b714 100644 --- a/apps/examples/smart/Makefile +++ b/apps/examples/smart/Makefile @@ -61,6 +61,8 @@ PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 THREADEXEC = TASH_EXECMD_SYNC +# smart file sytem test example + ASRCS = CSRCS = smart_main.c diff --git a/apps/examples/sysio_test/Makefile b/apps/examples/sysio_test/Makefile index ccadc5d..7150828 100644 --- a/apps/examples/sysio_test/Makefile +++ b/apps/examples/sysio_test/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = sysio PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 -# Hello, World! Example +# system input / output test example ASRCS = CSRCS = diff --git a/apps/examples/telnetd/Makefile b/apps/examples/telnetd/Makefile index 9ff76d6..6baaa5c 100644 --- a/apps/examples/telnetd/Makefile +++ b/apps/examples/telnetd/Makefile @@ -54,13 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = telnetd PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 1024 -# Hello, World! Example +# telnet daemon example ASRCS = CSRCS = diff --git a/apps/examples/tls_client/Makefile b/apps/examples/tls_client/Makefile index 828e716..3f03c74 100644 --- a/apps/examples/tls_client/Makefile +++ b/apps/examples/tls_client/Makefile @@ -60,6 +60,7 @@ APPNAME = tls_client PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 10240 +# tls client example ASRCS = CSRCS = diff --git a/apps/examples/tls_selftest/Makefile b/apps/examples/tls_selftest/Makefile index 440bb61..f39d85d 100644 --- a/apps/examples/tls_selftest/Makefile +++ b/apps/examples/tls_selftest/Makefile @@ -61,6 +61,7 @@ PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 40960 # 10240 ~ 204800 +# tls self test example ASRCS = CSRCS = diff --git a/apps/examples/tls_server/Makefile b/apps/examples/tls_server/Makefile index e5d687b..0166add 100644 --- a/apps/examples/tls_server/Makefile +++ b/apps/examples/tls_server/Makefile @@ -60,6 +60,7 @@ APPNAME = tls_server PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 10240 +# tls server example ASRCS = CSRCS = diff --git a/apps/examples/wakaama_client/Makefile b/apps/examples/wakaama_client/Makefile index 2983bd8..136b608 100644 --- a/apps/examples/wakaama_client/Makefile +++ b/apps/examples/wakaama_client/Makefile @@ -54,7 +54,7 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# DHANUSH Wiced join test built-in application info +# built-in application info APPNAME = wakaama_client PRIORITY = SCHED_PRIORITY_DEFAULT @@ -65,7 +65,7 @@ CFLAGS+=-I$(TOPDIR)/../external/wakaama/examples/client CFLAGS+=-I$(TOPDIR)/../external/wakaama/core CFLAGS+=-I$(TOPDIR)/../framework/include/dm -# DHANUSH Wiced join test +# wakaama client test example ASRCS = CSRCS = diff --git a/apps/examples/webclient/Makefile b/apps/examples/webclient/Makefile index 006fef0..b1e053a 100644 --- a/apps/examples/webclient/Makefile +++ b/apps/examples/webclient/Makefile @@ -54,11 +54,13 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs +# built-in application info + APPNAME = webclient PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 16384 -# uIP very tiny web server example +# webclient example ASRCS = CSRCS = diff --git a/apps/examples/webserver/Makefile b/apps/examples/webserver/Makefile index 1174112..1905be4 100644 --- a/apps/examples/webserver/Makefile +++ b/apps/examples/webserver/Makefile @@ -54,7 +54,7 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# uIP very tiny web server example +# webserver example ASRCS = CSRCS = diff --git a/apps/examples/workqueue/Makefile b/apps/examples/workqueue/Makefile index f41df59..1f39453 100644 --- a/apps/examples/workqueue/Makefile +++ b/apps/examples/workqueue/Makefile @@ -54,13 +54,15 @@ -include $(TOPDIR)/Make.defs include $(APPDIR)/Make.defs -# Hello, World! built-in application info +# built-in application info APPNAME = workqueue PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = 2048 THREADEXEC = TASH_EXECMD_SYNC +# workqueue example + ASRCS = CSRCS = MAINSRC = workqueue_main.c -- 2.7.4