You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2020/06/06 00:03:27 UTC

[incubator-nuttx-apps] branch master updated (2ba9fd5 -> 3f6343d)

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

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


    from 2ba9fd5  system: nxplayer: Refactor nxplayer.c
     new 8e9e49a  examples/leds: Switch dependence from ARCH_HAVE_LEDS && !ARCH_LEDS to USERLED
     new 3f6343d  examples/buttons: Switch dependence from ARCH_HAVE_BUTTONS to BUTTONS

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/buttons/Kconfig | 2 +-
 examples/leds/Kconfig    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[incubator-nuttx-apps] 01/02: examples/leds: Switch dependence from ARCH_HAVE_LEDS && !ARCH_LEDS to USERLED

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

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

commit 8e9e49a2f81c690b4471d396ec10ae3675d61e6b
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat Jun 6 02:04:41 2020 +0800

    examples/leds: Switch dependence from ARCH_HAVE_LEDS && !ARCH_LEDS to USERLED
    
    application just use USERLED ioctl and shouldn't take care the implementation detail
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
    Change-Id: I5b707d86db1bd96d85b6fed1d5a403584739f0d7
---
 examples/leds/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/leds/Kconfig b/examples/leds/Kconfig
index 6f1f092..5e364b9 100644
--- a/examples/leds/Kconfig
+++ b/examples/leds/Kconfig
@@ -6,7 +6,7 @@
 config EXAMPLES_LEDS
 	tristate "LED driver example"
 	default n
-	depends on ARCH_HAVE_LEDS && !ARCH_LEDS
+	depends on USERLED
 	---help---
 		Enable the LED driversexample
 


[incubator-nuttx-apps] 02/02: examples/buttons: Switch dependence from ARCH_HAVE_BUTTONS to BUTTONS

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

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

commit 3f6343d3e79c11c4db9a2aeaecb8ddd01d6b6854
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat Jun 6 02:11:11 2020 +0800

    examples/buttons: Switch dependence from ARCH_HAVE_BUTTONS to BUTTONS
    
    application just use BUTTONS ioctl and shouldn't take care the implementation detail
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
    Change-Id: Ia4d615700de1ac17302ab9b6379340fb81e69d86
---
 examples/buttons/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/buttons/Kconfig b/examples/buttons/Kconfig
index 42150b3..560cc2e 100644
--- a/examples/buttons/Kconfig
+++ b/examples/buttons/Kconfig
@@ -6,7 +6,7 @@
 config EXAMPLES_BUTTONS
 	tristate "Buttons driver example"
 	default n
-	depends on ARCH_HAVE_BUTTONS
+	depends on BUTTONS
 	---help---
 		Enable the Buttons drivers example