[GitHub] [incubator-nuttx] masayuki2009 opened a new pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
masayuki2009 opened a new pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298 ## Summary - I noticed waitpid_test stops with lc823450-xgevk:rndis - The condition was CONFIG_DEBUG_ASSERTION=y - Actually, the child task sent SIGCHILD but the parent couldn'

[GitHub] [incubator-nuttx] masayuki2009 opened a new pull request #2299: Fix armv7-a SMP

2020-11-14 Thread GitBox
masayuki2009 opened a new pull request #2299: URL: https://github.com/apache/incubator-nuttx/pull/2299 ## Summary - This PR consists of the following 4 commits - commit1: arch: armv7-a: Fix style warnings in mmu.h - commit2: arch: armv7-a: Fix MMU settings for SDRAM in SMP m

[GitHub] [incubator-nuttx] masayuki2009 commented on pull request #2299: Fix armv7-a SMP

2020-11-14 Thread GitBox
masayuki2009 commented on pull request #2299: URL: https://github.com/apache/incubator-nuttx/pull/2299#issuecomment-727178633 @patacongo At last, I found root cause of the armv7-a SMP and D-cache issue and fixed it.

[GitHub] [incubator-nuttx] fjpanag commented on pull request #2177: FLASH waiting cycles are configured based on HCLK.

2020-11-14 Thread GitBox
fjpanag commented on pull request #2177: URL: https://github.com/apache/incubator-nuttx/pull/2177#issuecomment-727200284 > > @v01d thank you for the details on the matter. It was constructive nevertheless. > > Do you both agree that this change is correct? Shall I proceed with the nxsty

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
Ouss4 commented on a change in pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#discussion_r523418880 ## File path: sched/sched/sched_waitid.c ## @@ -143,6 +143,14 @@ int nx_waitid(int idtype, id_t id, FAR siginfo_t *info, int options) sigemptyse

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
Ouss4 commented on a change in pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#discussion_r523418880 ## File path: sched/sched/sched_waitid.c ## @@ -143,6 +143,14 @@ int nx_waitid(int idtype, id_t id, FAR siginfo_t *info, int options) sigemptyse

[GitHub] [incubator-nuttx] davids5 commented on pull request #2177: FLASH waiting cycles are configured based on HCLK.

2020-11-14 Thread GitBox
davids5 commented on pull request #2177: URL: https://github.com/apache/incubator-nuttx/pull/2177#issuecomment-727219049 > ...This is a good idea, but right now it is not easy for me to do this change (for practical/personal reasons). > > If you don't mind, you may merge it as is, an

[GitHub] [incubator-nuttx] ticso24 opened a new pull request #2300: compile error on SAM34 TWI

2020-11-14 Thread GitBox
ticso24 opened a new pull request #2300: URL: https://github.com/apache/incubator-nuttx/pull/2300 Neither the prototype, nor the description had been adapted, resulting in compiler errors. Fix both points. ## Summary ## Impact Can't compile TWI code on SAM34 ##

[incubator-nuttx] branch master updated (1aac3d7 -> 0cf6614)

2020-11-14 Thread aguettouche
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.git. from 1aac3d7 stm32/stm32_aes.c: Fix nxstyle errors add 0cf6614 twi_takesem() had been changed to retu

[GitHub] [incubator-nuttx] Ouss4 merged pull request #2300: compile error on SAM34 TWI

2020-11-14 Thread GitBox
Ouss4 merged pull request #2300: URL: https://github.com/apache/incubator-nuttx/pull/2300 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 to

[GitHub] [incubator-nuttx] btashton commented on issue #2084: sim:bluetooth build broken

2020-11-14 Thread GitBox
btashton commented on issue #2084: URL: https://github.com/apache/incubator-nuttx/issues/2084#issuecomment-727253847 @v01d Have you had a chance to look into this? I think the BLE issues are some of the last remaining that I know of for the 10.0.0 release. --

[GitHub] [incubator-nuttx] masayuki2009 commented on a change in pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
masayuki2009 commented on a change in pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#discussion_r523468256 ## File path: sched/sched/sched_waitid.c ## @@ -143,6 +143,14 @@ int nx_waitid(int idtype, id_t id, FAR siginfo_t *info, int options) sig

[GitHub] [incubator-nuttx] patacongo commented on pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
patacongo commented on pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#issuecomment-727276818 See issue #1137 This is an automated message from the Apache Git Service. To respond to the messag

[GitHub] [incubator-nuttx] masayuki2009 commented on a change in pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
masayuki2009 commented on a change in pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#discussion_r523497562 ## File path: sched/sched/sched_waitid.c ## @@ -143,6 +143,14 @@ int nx_waitid(int idtype, id_t id, FAR siginfo_t *info, int options) sig

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
xiaoxiang781216 merged pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298 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: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 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 4cc38ca sched: Fix nx_waitid(), nx_

[incubator-nuttx-website] branch asf-site updated: Publishing web: 5eb8540a7fe060c5e451b36dfb23656a6f18e3e7 docs: 4cc38caba9edd03722758fb5c83a92fbab3b750c

2020-11-14 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 095ffb5 Publishing web

[incubator-nuttx] 04/04: boards: sabre-6quad: Add CONFIG_TESTING_GETPRIME=y to smp/defconfig

2020-11-14 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 81abbcb75ce9875ebc879be5b3d7097a64fe9264 Author: Masayuki Ishikawa AuthorDate: Sat Nov 14 18:47:30 2020 +090

[incubator-nuttx] branch master updated (4cc38ca -> 81abbcb)

2020-11-14 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 4cc38ca sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP new 812257d arch: armv7-a

[incubator-nuttx] 03/04: Update TODO and sabre-6quad/README.txt regarding SMP

2020-11-14 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 064451b4ee35aa8de0616882381b51cca3859d83 Author: Masayuki Ishikawa AuthorDate: Sat Nov 14 18:41:28 2020 +090

[incubator-nuttx] 02/04: arch: armv7-a: Fix MMU settings for SDRAM in SMP mode

2020-11-14 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 a20463642e2f2b60d27122bd9bdc9327e4e08d91 Author: Masayuki Ishikawa AuthorDate: Sat Nov 14 18:30:38 2020 +090

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2299: Fix armv7-a SMP

2020-11-14 Thread GitBox
xiaoxiang781216 commented on pull request #2299: URL: https://github.com/apache/incubator-nuttx/pull/2299#issuecomment-727287441 LGTM. This is an automated message from the Apache Git Service. To respond to the message, pleas

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #2299: Fix armv7-a SMP

2020-11-14 Thread GitBox
xiaoxiang781216 merged pull request #2299: URL: https://github.com/apache/incubator-nuttx/pull/2299 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] 01/04: arch: armv7-a: Fix style warnings in mmu.h

2020-11-14 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 812257d058737a608bb8610026d4cdd77ae1138b Author: Masayuki Ishikawa AuthorDate: Sat Nov 14 18:14:14 2020 +090

[GitHub] [incubator-nuttx] xiaoxiang781216 closed pull request #2230: Support for MAX1161X family of I2C 12 bit ADC chips:

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

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #2230: Support for MAX1161X family of I2C 12 bit ADC chips:

2020-11-14 Thread GitBox
xiaoxiang781216 commented on pull request #2230: URL: https://github.com/apache/incubator-nuttx/pull/2230#issuecomment-727293112 @fckruegel please cherry-pick this patch to your master to resolve the conflict: https://github.com/xiaoxiang781216/incubator-nuttx/commit/4fbe15d9cfa599bd044

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #2298: sched: Fix nx_waitid(), nx_waitpid(), nxtask_exithook() for SMP

2020-11-14 Thread GitBox
patacongo commented on a change in pull request #2298: URL: https://github.com/apache/incubator-nuttx/pull/2298#discussion_r523594022 ## File path: sched/sched/sched_waitid.c ## @@ -143,6 +143,14 @@ int nx_waitid(int idtype, id_t id, FAR siginfo_t *info, int options) sigemp

[incubator-nuttx-apps] branch master updated (03284a0 -> c408462)

2020-11-14 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 03284a0 Fix license headers on Make.defs and Makefile new 780891f examples/media/media_main.c

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #476: fix printf format wanings

2020-11-14 Thread GitBox
xiaoxiang781216 commented on pull request #476: URL: https://github.com/apache/incubator-nuttx-apps/pull/476#issuecomment-727293670 LGTM. This is an automated message from the Apache Git Service. To respond to the message, p

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #476: fix printf format wanings

2020-11-14 Thread GitBox
xiaoxiang781216 merged pull request #476: URL: https://github.com/apache/incubator-nuttx-apps/pull/476 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] 05/05: examples/romfs/romfs_main.c: Fix a printf format warning

2020-11-14 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 c408462892a112ff94f10f25b7870e2b3e94f6b6 Author: YAMAMOTO Takashi AuthorDate: Sat Nov 14 08:54:51 2020

[incubator-nuttx-apps] 04/05: examples/romfs/romfs_main.c: Appease nxstyle

2020-11-14 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 473fef4e58c4c9d43f8b2fd41441c66f06a78c23 Author: YAMAMOTO Takashi AuthorDate: Sat Nov 14 08:53:18 2020

[incubator-nuttx-apps] 03/05: examples/fboverlay/fboverlay_main.c: Fix printf format warnings

2020-11-14 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 fa727e08f199141673b1b768bcc904cdd9e965d4 Author: YAMAMOTO Takashi AuthorDate: Sat Nov 14 08:48:38 2020

[incubator-nuttx-apps] 02/05: examples/media/media_main.c: Fix printf format warnings

2020-11-14 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 0d3fde2d6b748950fadb31dba38fb0d727ce8e50 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 13 19:58:14 2020

[incubator-nuttx-apps] 01/05: examples/media/media_main.c: Appease nxstyle

2020-11-14 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 780891f8aacaa88c048546a1fc9e28aec30dd682 Author: YAMAMOTO Takashi AuthorDate: Fri Nov 13 19:54:28 2020

[GitHub] [incubator-nuttx] longhuarst commented on issue #2197: tms570 problems

2020-11-14 Thread GitBox
longhuarst commented on issue #2197: URL: https://github.com/apache/incubator-nuttx/issues/2197#issuecomment-727300114 > Hi @longhuarst the tms570 port was done a long time ago. But I didn't see people interested on it. Only the basic port it present. It means that if you want SPI, I2C, e

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #2222: Use a few integer types from the compiler

2020-11-14 Thread GitBox
xiaoxiang781216 commented on a change in pull request #: URL: https://github.com/apache/incubator-nuttx/pull/#discussion_r523691616 ## File path: arch/sim/include/types.h ## @@ -69,13 +69,41 @@ typedef unsigned char _uint8_t; typedef signed short _int16_t;

[GitHub] [incubator-nuttx] btashton commented on issue #2092: sim:nxffs and sim:spiffs Test failure

2020-11-14 Thread GitBox
btashton commented on issue #2092: URL: https://github.com/apache/incubator-nuttx/issues/2092#issuecomment-727361681 I think there are very bad things happening here. I cleaned up some configuration settings so the initial file writing works, but I am seeing what looks like inodes being

[GitHub] [incubator-nuttx] btashton commented on issue #2092: sim:nxffs and sim:spiffs Test failure

2020-11-14 Thread GitBox
btashton commented on issue #2092: URL: https://github.com/apache/incubator-nuttx/issues/2092#issuecomment-727371122 This is also highly suspicious `EVwni0b4` should be the first inode. It looks like this is getting totally corrupted when the new files are written. Before the writing o

[GitHub] [incubator-nuttx] btashton commented on a change in pull request #2282: cxd56: add initial audio SRC implementation

2020-11-14 Thread GitBox
btashton commented on a change in pull request #2282: URL: https://github.com/apache/incubator-nuttx/pull/2282#discussion_r523703756 ## File path: drivers/audio/cxd56_src.c ## @@ -0,0 +1,606 @@ +/ + * d

[GitHub] [incubator-nuttx] fckruegel commented on pull request #2230: Support for MAX1161X family of I2C 12 bit ADC chips:

2020-11-14 Thread GitBox
fckruegel commented on pull request #2230: URL: https://github.com/apache/incubator-nuttx/pull/2230#issuecomment-727528758 > > > @fckruegel please cherry-pick this patch to your master to resolve the conflict: > [xiaoxiang781216@4fbe15d](https://github.com/xiaoxiang781216/incuba