You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/04/19 16:29:43 UTC

[incubator-nuttx-apps] branch master updated (a82d74b -> 0c84e22)

This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git.


    from a82d74b  nshlib: Call BOARDIOC_FINALINIT in nsh_telnetstart if CONFIG_NSH_CONSOLE not define
     new 4431d77  .gitignore: Add more entries found during prcheck testing
     new 0c84e22  example: Remove all APPNAME from Makefile

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/audio_rttl/Makefile   | 12 +++---------
 examples/bmi160/Makefile       |  8 +-------
 examples/charger/Makefile      |  8 +-------
 examples/flowc/.gitignore      |  2 ++
 examples/tcpblaster/.gitignore |  2 ++
 examples/udp/.gitignore        |  2 ++
 6 files changed, 11 insertions(+), 23 deletions(-)


[incubator-nuttx-apps] 01/02: .gitignore: Add more entries found during prcheck testing

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 4431d770b4277e7af77f8671fc8d46734c143c15
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sun Apr 19 22:22:58 2020 +0800

    .gitignore: Add more entries found during prcheck testing
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 examples/flowc/.gitignore      | 2 ++
 examples/tcpblaster/.gitignore | 2 ++
 examples/udp/.gitignore        | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/examples/flowc/.gitignore b/examples/flowc/.gitignore
index f91aeb7..65c5512 100644
--- a/examples/flowc/.gitignore
+++ b/examples/flowc/.gitignore
@@ -3,6 +3,8 @@
 /.built
 /host
 /config.h
+/receiver
+/sender
 /*.asm
 /*.obj
 /*.rel
diff --git a/examples/tcpblaster/.gitignore b/examples/tcpblaster/.gitignore
index 8598f0e..19c8c19 100644
--- a/examples/tcpblaster/.gitignore
+++ b/examples/tcpblaster/.gitignore
@@ -3,6 +3,8 @@
 /.built
 /host
 /config.h
+/tcpclient
+/tcpserver
 /*.asm
 /*.obj
 /*.rel
diff --git a/examples/udp/.gitignore b/examples/udp/.gitignore
index f91aeb7..c965cd6 100644
--- a/examples/udp/.gitignore
+++ b/examples/udp/.gitignore
@@ -3,6 +3,8 @@
 /.built
 /host
 /config.h
+/udpclient
+/udpserver
 /*.asm
 /*.obj
 /*.rel


[incubator-nuttx-apps] 02/02: example: Remove all APPNAME from Makefile

Posted by gn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 0c84e22aaf71815fb2c4a53ddcec6e07b34a057d
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sun Apr 19 22:41:22 2020 +0800

    example: Remove all APPNAME from Makefile
    
    which doesn't use anymore
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 examples/audio_rttl/Makefile | 12 +++---------
 examples/bmi160/Makefile     |  8 +-------
 examples/charger/Makefile    |  8 +-------
 3 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/examples/audio_rttl/Makefile b/examples/audio_rttl/Makefile
index ad7b415..2192290 100644
--- a/examples/audio_rttl/Makefile
+++ b/examples/audio_rttl/Makefile
@@ -40,12 +40,9 @@ include $(APPDIR)/Make.defs
 
 # Audio application info
 
-CONFIG_EXAMPLES_AUDIO_BEEP_PRIORITY ?= SCHED_PRIORITY_DEFAULT
-CONFIG_EXAMPLES_AUDIO_BEEP_STACKSIZE ?= 2048
-
-APPNAME   = audio_rttl
-PRIORITY  = $(CONFIG_EXAMPLES_AUDIO_BEEP_PRIORITY)
-STACKSIZE = $(CONFIG_EXAMPLES_AUDIO_BEEP_STACKSIZE)
+PROGNAME = $(CONFIG_EXAMPLES_AUDIO_SOUND_PROGNAME)
+PRIORITY  = $(CONFIG_EXAMPLES_AUDIO_SOUND_PRIORITY)
+STACKSIZE = $(CONFIG_EXAMPLES_AUDIO_SOUND_STACKSIZE)
 
 # Audio Example
 
@@ -65,7 +62,4 @@ endif
 
 CXXFLAGS += -D_POSIX
 
-CONFIG_EXAMPLES_AUDIO_BEEP_PROGNAME ?= audio_rttl$(EXEEXT)
-PROGNAME = $(CONFIG_EXAMPLES_AUDIO_BEEP_PROGNAME)
-
 include $(APPDIR)/Application.mk
diff --git a/examples/bmi160/Makefile b/examples/bmi160/Makefile
index 367bfc7..6bda693 100644
--- a/examples/bmi160/Makefile
+++ b/examples/bmi160/Makefile
@@ -38,10 +38,7 @@
 
 # sixaxis built-in application info
 
-CONFIG_EXAMPLES_SIXAXIS_PRIORITY ?= SCHED_PRIORITY_DEFAULT
-CONFIG_EXAMPLES_SIXAXIS_STACKSIZE ?= 2048
-
-APPNAME = bmi160
+PROGNAME = $(CONFIG_EXAMPLES_SIXAXIS_PROGNAME)
 PRIORITY = $(CONFIG_EXAMPLES_SIXAXIS_PRIORITY)
 STACKSIZE = $(CONFIG_EXAMPLES_SIXAXIS_STACKSIZE)
 
@@ -51,7 +48,4 @@ ASRCS =
 CSRCS =
 MAINSRC = sixaxis_main.c
 
-CONFIG_EXAMPLES_SIXAXIS_PROGNAME ?= sixaxis$(EXEEXT)
-PROGNAME = $(CONFIG_EXAMPLES_SIXAXIS_PROGNAME)
-
 include $(APPDIR)/Application.mk
diff --git a/examples/charger/Makefile b/examples/charger/Makefile
index 8c3a3ca..31e9fba 100644
--- a/examples/charger/Makefile
+++ b/examples/charger/Makefile
@@ -2,10 +2,7 @@
 -include $(TOPDIR)/Make.defs
 -include $(SDKDIR)/Make.defs
 
-CONFIG_EXAMPLES_CHARGER_PRIORITY ?= SCHED_PRIORITY_DEFAULT
-CONFIG_EXAMPLES_CHARGER_STACKSIZE ?= 2048
-
-APPNAME = charger
+PROGNAME = $(CONFIG_EXAMPLES_CHARGER_PROGNAME)
 PRIORITY = $(CONFIG_EXAMPLES_CHARGER_PRIORITY)
 STACKSIZE = $(CONFIG_EXAMPLES_CHARGER_STACKSIZE)
 
@@ -13,7 +10,4 @@ ASRCS =
 CSRCS =
 MAINSRC = charger_main.c
 
-CONFIG_EXAMPLES_CHARGER_PROGNAME ?= charger$(EXEEXT)
-PROGNAME = $(CONFIG_EXAMPLES_CHARGER_PROGNAME)
-
 include $(APPDIR)/Application.mk