[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #2283: sim: Add a config to test libcxx

2020-11-27 Thread GitBox
xiaoxiang781216 commented on a change in pull request #2283: URL: https://github.com/apache/incubator-nuttx/pull/2283#discussion_r531438399 ## File path: boards/sim/sim/sim/scripts/Make.defs ## @@ -59,8 +59,8 @@ ifeq ($(CONFIG_CXX_EXCEPTION),) ARCHCPUFLAGSXX += -fno-exceptio

[incubator-nuttx-apps] branch master updated (d1821c9 -> ec0f0b7)

2020-11-27 Thread xiaoxiang
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-apps.git. from d1821c9 netutils/thttpd/thttpd.c: Fix syslog formats new 3e01532 netutils/ftpd/ftpd.c: Fix sy

[incubator-nuttx-apps] 04/05: system/nxrecorder/nxrecorder.c: Don't assume debug macro expansion

2020-11-27 Thread xiaoxiang
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-apps.git commit ce3ca221527f46f1ef5b180d9a4c7caf8f360a11 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:14:36 2020

[incubator-nuttx-apps] 05/05: system/nxrecorder/nxrecorder.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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-apps.git commit ec0f0b7fbc187888ae9d89178595b538059c1f8a Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:15:08 2020

[incubator-nuttx-apps] 02/05: system/nxplayer/nxplayer.c: Don't assume debug macro expansion

2020-11-27 Thread xiaoxiang
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-apps.git commit db07ae43eeae7a5b467b562fc94cb184f218c0de Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:11:17 2020

[incubator-nuttx-apps] 03/05: system/nxplayer/nxplayer.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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-apps.git commit ed768d11592d2177984f9bc4904d51190fdafa09 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:11:31 2020

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #505: Syslog format fixes

2020-11-27 Thread GitBox
xiaoxiang781216 merged pull request #505: URL: https://github.com/apache/incubator-nuttx-apps/pull/505 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

[incubator-nuttx-apps] 01/05: netutils/ftpd/ftpd.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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-apps.git commit 3e015320e305075ff5a13d6d1ef1b33e7bbcee98 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:08:45 2020

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
xiaoxiang781216 opened a new pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418 ## Summary to avoid the conflict with 3rd party library(e.g. protobuf): https://github.com/protocolbuffers/protobuf/blob/fdc35840b95f56c3aef44a3fc6ae5991f21620a5/src/google/protob

[GitHub] [incubator-nuttx] yamt opened a new pull request #2419: Syslog and nxstyle fixes

2020-11-27 Thread GitBox
yamt opened a new pull request #2419: URL: https://github.com/apache/incubator-nuttx/pull/2419 ## Summary Extracted from https://github.com/apache/incubator-nuttx/pull/2347 ## Impact ## Testing This is an

[GitHub] [incubator-nuttx] yamt commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
yamt commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734727110 why is it conditional on C++? This is an automated message from the Apache Git Service. To respond to the m

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
xiaoxiang781216 commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734731649 > why is it conditional on C++? Because many C++ code define OK as enum like this: ``` enum Code { OK = 0, }; ``` And it also

[GitHub] [incubator-nuttx] yamt commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
yamt commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734741496 is that any reason C++ code does it but C code doesn't? otherwise, if we care namespace pollution, i guess it's better to remove OK/ERROR unconditionally. or, make the

[GitHub] [incubator-nuttx] yamt commented on pull request #2419: Syslog and nxstyle fixes

2020-11-27 Thread GitBox
yamt commented on pull request #2419: URL: https://github.com/apache/incubator-nuttx/pull/2419#issuecomment-734744573 The following nxstyle errors are known. I'm not going to fix them in this PR. * Constants definitions like TPM_CnSC_MSB. arch/arm/src/kl/kl_pwm.c:438:44: error:

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
xiaoxiang781216 commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734748432 > is that any reason C++ code does it but C code doesn't? > otherwise, if we care namespace pollution, i guess it's better to remove OK/ERROR unconditionally.

[GitHub] [incubator-nuttx] sgysh opened a new pull request #2420: sched/signal: Remove redundant checks

2020-11-27 Thread GitBox
sgysh opened a new pull request #2420: URL: https://github.com/apache/incubator-nuttx/pull/2420 ## Summary Remove redundant checks ## Impact no impact, I think ## Testing This is an automat

[GitHub] [incubator-nuttx] yamt commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
yamt commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734752042 > > is that any reason C++ code does it but C code doesn't? > > otherwise, if we care namespace pollution, i guess it's better to remove OK/ERROR unconditionally. >

[GitHub] [incubator-nuttx-apps] sgysh opened a new pull request #506: testing/getprime/getprime_main.c: Fix a comment

2020-11-27 Thread GitBox
sgysh opened a new pull request #506: URL: https://github.com/apache/incubator-nuttx-apps/pull/506 ## Summary Fix a comment ## Impact no impact ## Testing This is an automated message from

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2418: libc: Don't define OK in C++ context like ERROR

2020-11-27 Thread GitBox
xiaoxiang781216 commented on pull request #2418: URL: https://github.com/apache/incubator-nuttx/pull/2418#issuecomment-734755934 > > > is that any reason C++ code does it but C code doesn't? > > > otherwise, if we care namespace pollution, i guess it's better to remove OK/ERROR unconditi

[GitHub] [incubator-nuttx] Ouss4 commented on issue #2409: Properly document each arch, SoC family and board

2020-11-27 Thread GitBox
Ouss4 commented on issue #2409: URL: https://github.com/apache/incubator-nuttx/issues/2409#issuecomment-734766504 > Yes, there could be a lot to document, but we can focus on the important things first. I would create a skeleton for (1) and (2) and at least begin to document nRF52 in (2)

[incubator-nuttx-apps] branch master updated: testing/getprime/getprime_main.c: Fix a comment

2020-11-27 Thread xiaoxiang
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-apps.git The following commit(s) were added to refs/heads/master by this push: new e1a7c25 testing/getprime/getpr

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #506: testing/getprime/getprime_main.c: Fix a comment

2020-11-27 Thread GitBox
xiaoxiang781216 merged pull request #506: URL: https://github.com/apache/incubator-nuttx-apps/pull/506 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

[incubator-nuttx] branch master updated: sched/signal: Remove redundant checks

2020-11-27 Thread xiaoxiang
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 The following commit(s) were added to refs/heads/master by this push: new 8acff49 sched/signal: Remove redund

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #2420: sched/signal: Remove redundant checks

2020-11-27 Thread GitBox
xiaoxiang781216 merged pull request #2420: URL: https://github.com/apache/incubator-nuttx/pull/2420 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[incubator-nuttx] 03/48: drivers/timers/pwm.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 89183fec009ad5e27095247633da124833314292 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 06:54:32 2020 +0900

[incubator-nuttx] 05/48: arch/arm/src/stm32/stm32_pwm.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 96f012cc733bec919a2498681b3634f5e67c7912 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 07:04:09 2020 +0900

[incubator-nuttx] 02/48: net/tcp/tcp_appsend.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 cc9b3a3ec50aad15cfc2ba278ce34b833b0d74bc Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 06:49:59 2020 +0900

[incubator-nuttx] branch master updated (8acff49 -> afe3c2c)

2020-11-27 Thread xiaoxiang
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 8acff49 sched/signal: Remove redundant checks new cbdbb36 net/tcp/tcp_input.c: Fix syslog formats

[incubator-nuttx] 09/48: arch/arm/src/armv7-m/arm_hardfault.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 34a31ea1e55a5a31087b1217a5d48c171e9685a2 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:20:57 2020 +0900

[incubator-nuttx] 07/48: arch/arm/src/stm32/stm32_hrtim.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 08dd2251ea7ec28c0ca12c23d39d894f73a89de9 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:15:30 2020 +0900

[incubator-nuttx] 10/48: arch/arm/src/armv7-m/arm_memfault.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 cb83f29187082c7ca8ce2089328db35992424533 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:22:25 2020 +0900

[incubator-nuttx] 34/48: arch/arm/src/cxd56xx/cxd56_usbdev.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 a4fb295a0f7e17380d8d7d9a4d0e4c9c9bb76074 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 13:56:30 2020 +0900

[incubator-nuttx] 06/48: arch/arm/src/stm32/stm32_otghshost.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 6b11286455a040e09d9ded7c6a1d6b4e31e15428 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 07:09:36 2020 +0900

[incubator-nuttx] 01/48: net/tcp/tcp_input.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 cbdbb369c0805ba5d7dc0790883392ef488f478a Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 06:47:31 2020 +0900

[incubator-nuttx] 19/48: arch/arm/src/stm32/stm32_irq.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 78bf42c91ff8583e0b0f37e847ccd1a70f9f3b45 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 11:20:45 2020 +0900

[incubator-nuttx] 22/48: boards/arm/stm32/stm3210e-eval/src/stm32_lcd.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 da3f0b2f28633f9b3294dc4898c399f10f707b1e Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 12:18:00 2020 +0900

[incubator-nuttx] 16/48: arch/arm/src/stm32/stm32f40xxx_i2c.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 be4ce99410f70ffb3b61c2505f4e8805b674b124 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 10:08:16 2020 +0900

[incubator-nuttx] 18/48: arch/arm/src/stm32/stm32_dma_v2.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 9fa98394f58c1e68fa74fa270535727286275690 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 11:16:31 2020 +0900

[incubator-nuttx] 27/48: arch/arm/src/cxd56xx/cxd56_spi.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 b012534ea435bdc21e1db3236082b0bde75671e1 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:32:21 2020 +0900

[incubator-nuttx] 41/48: drivers/lcd/ft80x_spi.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 e2ec8e974cc96a0320c5e274b98f318153f01115 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:25:13 2020 +0900

[incubator-nuttx] 30/48: boards/arm/lpc17xx_40xx/lpcxpresso-lpc1768/src/lpc17_40_oled.c: Appease nxstyle

2020-11-27 Thread xiaoxiang
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 c389b23960071179529a50a0785073c37e1fa1e7 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 19:36:20 2020 +0900

[incubator-nuttx] 12/48: drivers/lcd/st7567.c: Remove references to non existent st7567_powerstring

2020-11-27 Thread xiaoxiang
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 56dcad1540dc3a96f40c5c7abb3cfcb0e64d50de Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:27:57 2020 +0900

[incubator-nuttx] 04/48: arch/arm/src/stm32/stm32_adc.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 7276f0c206261252c4858a9c0ae5210e5f1241fe Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 06:56:36 2020 +0900

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #2419: Syslog and nxstyle fixes

2020-11-27 Thread GitBox
xiaoxiang781216 merged pull request #2419: URL: https://github.com/apache/incubator-nuttx/pull/2419 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[incubator-nuttx] 21/48: boards/arm/stm32/stm3210e-eval/src/stm32_lcd.c: Appease nxstyle

2020-11-27 Thread xiaoxiang
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 5631b7f4644663e234a3c7c3a051db13ec8ccb40 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 12:15:36 2020 +0900

[incubator-nuttx] 20/48: arch/arm/src/stm32/stm32_i2c.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 56803db5e8f523b5ac5c03d7cc511255b9b4559f Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 11:59:33 2020 +0900

[incubator-nuttx] 38/48: audio/pcm_decode.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 d7086d333e3830644658399e8aec9fe4701457e9 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:23:23 2020 +0900

[incubator-nuttx] 29/48: arch/arm/src/cxd56xx/cxd56_wdt.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 ea0537cfaf918dcd06f884f8449b998dbdebf42a Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:37:02 2020 +0900

[incubator-nuttx] 15/48: arch/arm/src/stm32/stm32_eth.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 4da2eef7d2e53f6b85b9ad0700344495cd66ae92 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 10:04:40 2020 +0900

[incubator-nuttx] 14/48: arch/arm/src/kl/kl_pwm.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 d9b7909f00101a56a5b48c5d0db40f5f75bf162e Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:56:30 2020 +0900

[incubator-nuttx] 26/48: arch/arm/src/cxd56xx/cxd56_sfc.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 6196eb07963748d93d42c51f047e1f22e05f53e0 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:29:57 2020 +0900

[incubator-nuttx] 25/48: arch/arm/src/cxd56xx/cxd56_sysctl.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 758525d38488b57e9989d06507a2a08df1967937 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:28:52 2020 +0900

[incubator-nuttx] 31/48: boards/arm/lpc17xx_40xx/lpcxpresso-lpc1768/src/lpc17_40_oled.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 7050eb7621af5951c1f23b1ea64c6d15d5c5902c Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 19:36:54 2020 +0900

[incubator-nuttx] 47/48: arch/arm/src/stm32/stm32_hciuart.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 23cd2a08429a90c28db53483f3d0832877bb9a1f Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:57:32 2020 +0900

[incubator-nuttx] 33/48: drivers/wireless/gs2200m.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 d6a562e3e166e0099781a01567f609f53d53668a Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 13:53:09 2020 +0900

[incubator-nuttx] 37/48: audio/audio.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 8ca0732de560c188eae4da89cada4d24e198a319 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:19:40 2020 +0900

[incubator-nuttx] 23/48: arch/arm/src/stm32/stm32_i2c_alt.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 8b212ae040c0961493d6633f219cdb2ae22343f1 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 12:20:54 2020 +0900

[incubator-nuttx] 28/48: arch/arm/src/cxd56xx/cxd56_timer.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 8e0a7d887e001b47efc664f2ea85b288a12358e7 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:34:55 2020 +0900

[incubator-nuttx] 17/48: libs/libnx/nxfonts/nxfonts_cache.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 a2a30c8813fc9444ccc9da2b7c9cdcb1f7fafdf8 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 10:12:20 2020 +0900

[incubator-nuttx] 46/48: binfmt/libelf/libelf_dtors.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 85f38b01c1eb2113e434c3785066dab00a491eeb Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:53:52 2020 +0900

[incubator-nuttx] 24/48: wireless/bluetooth/bt_smp.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 0dadd03dbb7648d5f1314986fa38ad78bfdd4666 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 17:23:52 2020 +0900

[incubator-nuttx] 43/48: boards/arm/stm32/stm32ldiscovery/src/stm32_lcd.c: Appease nxstyle

2020-11-27 Thread xiaoxiang
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 5bc56d388a6423fafb7ac307c7146f29f13b3538 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:39:12 2020 +0900

[incubator-nuttx] 42/48: arch/arm/src/stm32/stm32l15xx_flash.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 c55cdc8a423925749c0cd8d3ab75a5bbf968e3cd Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:28:20 2020 +0900

[incubator-nuttx] 45/48: binfmt/libelf/libelf_ctors.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 44e61d7fe7094043c519e305b9c5745a59caf90f Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:49:31 2020 +0900

[incubator-nuttx] 35/48: arch/arm/src/cxd56xx/cxd56_sdhci.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 809f5efb1cdc8657839594ece9e95753cb4a9640 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:04:11 2020 +0900

[incubator-nuttx] 48/48: drivers/usbdev/rndis.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 afe3c2cdb542b185d21946b81e8790981d21ef4e Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 18:00:19 2020 +0900

[incubator-nuttx] 32/48: drivers/audio/cxd56.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 b3d39176bcef1b7fc1c8bb0201b9a1056882f669 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 13:51:56 2020 +0900

[incubator-nuttx] 08/48: boards/arm/stm32/stm32f334-disco/src/stm32_powerled.c: Fix a syslog format

2020-11-27 Thread xiaoxiang
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 458d84454ae129f76caa29490e774618ed32151f Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:17:20 2020 +0900

[incubator-nuttx] 11/48: drivers/lcd/st7567.c: Appease nxstyle

2020-11-27 Thread xiaoxiang
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 7b897ac18661d021dcdfebd51eec0fee024598ca Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:26:13 2020 +0900

[incubator-nuttx] 36/48: net/usrsock/usrsock_dev.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 dbe389a6bd7115b1a994ddc9fa294966e385d65a Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:17:04 2020 +0900

[incubator-nuttx] 40/48: boards/arm/cxd56xx/common/src/cxd56_ili9340.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 4c67d9d66c87a6ddd98895a288c8cece4f08cc30 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:26:22 2020 +0900

[incubator-nuttx] 13/48: arch/arm/src/kl/kl_pwm.c: Appease nxstyle

2020-11-27 Thread xiaoxiang
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 038fdbe8d9eb8a3f4295b65b5f540078e27de1a9 Author: YAMAMOTO Takashi AuthorDate: Thu Nov 26 09:53:39 2020 +0900

[incubator-nuttx] 44/48: boards/arm/stm32/stm32ldiscovery/src/stm32_lcd.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 5564fc6e4a86f4879b55281afbfe6c8fddc60f9f Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 17:43:59 2020 +0900

[incubator-nuttx] 39/48: boards/arm/cxd56xx/common/src/cxd56_gs2200m.c: Fix syslog formats

2020-11-27 Thread xiaoxiang
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 edee18be7232b8ff4440a5a1a26f3128c6d2c288 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 27 14:25:05 2020 +0900

[GitHub] [incubator-nuttx] juniskane opened a new pull request #2421: net/neighbor/neighbor_ethernet_out.c: fix build error without ICMPv6

2020-11-27 Thread GitBox
juniskane opened a new pull request #2421: URL: https://github.com/apache/incubator-nuttx/pull/2421 ## Summary Patch fixes following build error when CONFIG_NET_IPv6 && !CONFIG_NET_ICMPv6 && CONFIG_NET_ETHERNET: nuttx/staging/libnet.a(neighbor_ethernet_out.o): In function

[GitHub] [incubator-nuttx] juniskane commented on pull request #2421: net/neighbor/neighbor_ethernet_out.c: fix build error without ICMPv6

2020-11-27 Thread GitBox
juniskane commented on pull request #2421: URL: https://github.com/apache/incubator-nuttx/pull/2421#issuecomment-734842979 It tried hard to think of some way for reporting the error back to upper layers instead of DEBUGPANIC(), but could not find a good way. --

[GitHub] [incubator-nuttx] davids5 commented on pull request #2391: Add simple wm8994 codec driver

2020-11-27 Thread GitBox
davids5 commented on pull request #2391: URL: https://github.com/apache/incubator-nuttx/pull/2391#issuecomment-734851948 In the changed to the header file stm32f74xx75xx_pinmap.h. No. We can not change all the boards default I2C settings. It will may break deployed systems. Or worse violat

[GitHub] [incubator-nuttx] davids5 commented on a change in pull request #2391: Add simple wm8994 codec driver

2020-11-27 Thread GitBox
davids5 commented on a change in pull request #2391: URL: https://github.com/apache/incubator-nuttx/pull/2391#discussion_r531627469 ## File path: boards/arm/stm32f7/stm32f746g-disco/include/board.h ## @@ -366,7 +374,7 @@ #define GPIO_TP_INT (GPIO_INPUT|GPIO_FLOAT|GPIO_EXTI|

[GitHub] [incubator-nuttx] yjdwbj opened a new pull request #2422: Dev/stm32l152re ili93418b driver

2020-11-27 Thread GitBox
yjdwbj opened a new pull request #2422: URL: https://github.com/apache/incubator-nuttx/pull/2422 ## Summary Add 2.4 Inch TFT LCD Shield ILI9341 for nucleo-l152re, 8080 MCU 8-bit bus interface I, This Shield pins is match the NUCLEO-L152RE's Arduino connectors. ## Impact

[GitHub] [incubator-nuttx] davids5 commented on pull request #2415: igmp: bypass MULTICAST_LOOP/TTL options

2020-11-27 Thread GitBox
davids5 commented on pull request #2415: URL: https://github.com/apache/incubator-nuttx/pull/2415#issuecomment-734863712 Is this a Hack? This code change, changes the functionality from returning not supported to falsely returning that the functionality is supported but does nothing. --

[GitHub] [incubator-nuttx-apps] Donny9 opened a new pull request #507: irtest: fix __attributes__((section)) issue on linux and mac

2020-11-27 Thread GitBox
Donny9 opened a new pull request #507: URL: https://github.com/apache/incubator-nuttx-apps/pull/507 ## Summary Using global arrays instead of __attributes__((section)) organization because __attribute__((section)) syntax is different on linux and mac ## Impact Fix compile brea

[GitHub] [incubator-nuttx] Donny9 commented on pull request #2371: Enable irtest tool

2020-11-27 Thread GitBox
Donny9 commented on pull request #2371: URL: https://github.com/apache/incubator-nuttx/pull/2371#issuecomment-734866685 > Guys, any idea why is it failing on macOS even after restart the CI jobs? we need to merge this PR https://github.com/apache/incubator-nuttx-apps/pull/507 to fix

[GitHub] [incubator-nuttx] davids5 merged pull request #2412: net/icmp: add sanity check to avoid wild data length

2020-11-27 Thread GitBox
davids5 merged pull request #2412: URL: https://github.com/apache/incubator-nuttx/pull/2412 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above t

[incubator-nuttx] branch master updated: net/icmp: add sanity check to avoid wild data length

2020-11-27 Thread davids5
This is an automated email from the ASF dual-hosted git repository. davids5 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new a97aefe net/icmp: add sanity check to

[GitHub] [incubator-nuttx] davids5 commented on pull request #2413: net/tcp: correct the available iobs count if throttle is enabled

2020-11-27 Thread GitBox
davids5 commented on pull request #2413: URL: https://github.com/apache/incubator-nuttx/pull/2413#issuecomment-734872421 @antmerlino - was there any magic here, or was it double dipping? This is an automated message from the

[GitHub] [incubator-nuttx] davids5 commented on pull request #2414: net/tcp: implement the fast retransmit

2020-11-27 Thread GitBox
davids5 commented on pull request #2414: URL: https://github.com/apache/incubator-nuttx/pull/2414#issuecomment-734873449 @antmerlino - would you please have a look? This is an automated message from the Apache Git Service. To

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #2421: net/neighbor/neighbor_ethernet_out.c: fix build error without ICMPv6

2020-11-27 Thread GitBox
xiaoxiang781216 merged pull request #2421: URL: https://github.com/apache/incubator-nuttx/pull/2421 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[incubator-nuttx] branch master updated (a97aefe -> ebb5fb7)

2020-11-27 Thread xiaoxiang
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 a97aefe net/icmp: add sanity check to avoid wild data length add ebb5fb7 net/neighbor/neighbor_eth

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2422: Dev/stm32l152re ili93418b driver

2020-11-27 Thread GitBox
xiaoxiang781216 commented on pull request #2422: URL: https://github.com/apache/incubator-nuttx/pull/2422#issuecomment-734915529 @yjdwbj please remove: ``` Merge remote-tracking branch 'upstream/master' into dev/stm32l152re-ili93418b-driver ``` from the pathset. --

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2415: igmp: bypass MULTICAST_LOOP/TTL options

2020-11-27 Thread GitBox
xiaoxiang781216 commented on pull request #2415: URL: https://github.com/apache/incubator-nuttx/pull/2415#issuecomment-734919971 > Is this a Hack? This code change, changes the functionality from returning not supported to falsely returning that the functionality is supported but does noth

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on pull request #2415: igmp: bypass MULTICAST_LOOP/TTL options

2020-11-27 Thread GitBox
xiaoxiang781216 edited a comment on pull request #2415: URL: https://github.com/apache/incubator-nuttx/pull/2415#issuecomment-734919971 > Is this a Hack? This code change, changes the functionality from returning not supported to falsely returning that the functionality is supported but doe

[GitHub] [incubator-nuttx] Ouss4 opened a new pull request #2423: Couple of Xtensa fixes

2020-11-27 Thread GitBox
Ouss4 opened a new pull request #2423: URL: https://github.com/apache/incubator-nuttx/pull/2423 ## Summary - Fix alignment in usestack and stackframe . - Include ESP32 files through the chip symbolic link. ## Impact Impacts only Xtensa arch. ## Testing ostest. ---

[GitHub] [incubator-nuttx] hartmannathan opened a new pull request #2424: arch/stm32: Fix nxstyle errors

2020-11-27 Thread GitBox
hartmannathan opened a new pull request #2424: URL: https://github.com/apache/incubator-nuttx/pull/2424 ## Summary arch/arm/src/stm32/stm32_wdg.h: arch/arm/src/stm32/stm32f40xxx_rtcc.c: arch/arm/src/stm32/stm32l15xxx_alarm.h: * Fix nxstyle errors. ## Impact

[GitHub] [incubator-nuttx] btashton opened a new issue #2425: Code size growth between 9.1.0 and 10.0.0-RC0

2020-11-27 Thread GitBox
btashton opened a new issue #2425: URL: https://github.com/apache/incubator-nuttx/issues/2425 # Why is the Build Larger ## Intro There was some discussion of the growth in code size between 9.1.0 and 10.0.0-RC0. We have some tools to help us look into this, so I did a little digging

[GitHub] [incubator-nuttx] btashton commented on issue #2425: Code size growth between 9.1.0 and 10.0.0-RC0

2020-11-27 Thread GitBox
btashton commented on issue #2425: URL: https://github.com/apache/incubator-nuttx/issues/2425#issuecomment-735008454 @patacongo @xiaoxiang781216 @acassis @davids5 for awareness. None of these seem like "bugs" and are well intentioned, but it is something we should be aware of. The mema

[incubator-nuttx] branch master updated: net/wireless: add country code control support

2020-11-27 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 946f997 net/wireless: add country cod

[GitHub] [incubator-nuttx] acassis merged pull request #2417: net/wireless: add country code control support

2020-11-27 Thread GitBox
acassis merged pull request #2417: URL: https://github.com/apache/incubator-nuttx/pull/2417 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above t

[GitHub] [incubator-nuttx] patacongo commented on issue #2425: Code size growth between 9.1.0 and 10.0.0-RC0

2020-11-27 Thread GitBox
patacongo commented on issue #2425: URL: https://github.com/apache/incubator-nuttx/issues/2425#issuecomment-735015480 > > > @patacongo @xiaoxiang781216 @acassis @davids5 for awareness. None of these seem like "bugs" and are well intentioned, but it is something we should be aware

[GitHub] [incubator-nuttx] patacongo commented on issue #2425: Code size growth between 9.1.0 and 10.0.0-RC0

2020-11-27 Thread GitBox
patacongo commented on issue #2425: URL: https://github.com/apache/incubator-nuttx/issues/2425#issuecomment-735016968 > The only way to avoid that would be to avoid calling mm_memalign() (or any of its variants in the different namespaces). The previous code avoided this code growth

[incubator-nuttx-website] branch asf-site updated: Publishing web: 747adaf5aa6fc01843a89e59f39e0f27e163d1e2 docs: 946f99791bd34b951421f6731a381e797ff6afd5

2020-11-27 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new fe65eba Publishing web

  1   2   >