You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/09/01 03:58:30 UTC

[incubator-nuttx] branch master updated (c836b15 -> ad83e7b)

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

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


    from c836b15  LICENSE: add drivers/wireless/bluetooth license
     new 7297362  user/trap: Enforce CONFIG_MQ_MAXMSGSIZE >=64 when NX Server is used
     new ad83e7b  open1788/fb: Fix CONFIG_MQ_MAXMSGSIZE

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:
 boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig | 2 +-
 graphics/nxmu/nxmu.h                                  | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

[incubator-nuttx] 01/02: user/trap: Enforce CONFIG_MQ_MAXMSGSIZE >=64 when NX Server is used

Posted by xi...@apache.org.
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.git

commit 72973629a7449cbdac8ecaa9eb4ec903d9d89826
Author: Alan C. Assis <ac...@gmail.com>
AuthorDate: Tue Aug 31 17:05:50 2021 -0300

    user/trap: Enforce CONFIG_MQ_MAXMSGSIZE >=64 when NX Server is used
---
 graphics/nxmu/nxmu.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/graphics/nxmu/nxmu.h b/graphics/nxmu/nxmu.h
index cb35061..71d284a 100644
--- a/graphics/nxmu/nxmu.h
+++ b/graphics/nxmu/nxmu.h
@@ -40,6 +40,10 @@
  * Pre-processor Definitions
  ****************************************************************************/
 
+#if CONFIG_MQ_MAXMSGSIZE < 64
+#error "The NX Server needs CONFIG_MQ_MAXMSGSIZE >= 64"
+#endif
+
 /****************************************************************************
  * Public Types
  ****************************************************************************/

[incubator-nuttx] 02/02: open1788/fb: Fix CONFIG_MQ_MAXMSGSIZE

Posted by xi...@apache.org.
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.git

commit ad83e7bc886710a0f79b9cfad97dce62841c94d9
Author: Alan C. Assis <ac...@gmail.com>
AuthorDate: Tue Aug 31 19:23:37 2021 -0300

    open1788/fb: Fix CONFIG_MQ_MAXMSGSIZE
---
 boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig b/boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig
index 5c6dcde..855117c 100644
--- a/boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig
+++ b/boards/arm/lpc17xx_40xx/open1788/configs/fb/defconfig
@@ -20,7 +20,6 @@ CONFIG_BUILTIN=y
 CONFIG_DEV_LOOP=y
 CONFIG_DRIVERS_VIDEO=y
 CONFIG_EXAMPLES_FB=y
-CONFIG_HOST_WINDOWS=y
 CONFIG_LPC17_40_EXTDRAM=y
 CONFIG_LPC17_40_EXTDRAMSIZE=67108864
 CONFIG_LPC17_40_GPDMA=y
@@ -30,6 +29,7 @@ CONFIG_LPC17_40_UART0=y
 CONFIG_MMCSD=y
 CONFIG_MMCSD_SDIO=y
 CONFIG_MM_REGIONS=3
+CONFIG_MQ_MAXMSGSIZE=64
 CONFIG_NX=y
 CONFIG_NXFONT_SANS23X27=y
 CONFIG_NXFONT_SANS28X37B=y