[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
pkarashchenko commented on code in PR #8641: URL: https://github.com/apache/nuttx/pull/8641#discussion_r1119741605 ## include/nuttx/streams.h: ## @@ -217,6 +217,14 @@ struct lib_rawsostream_s intfd; }; +struct lib_bufferedoutstream_s +{ + struct

[GitHub] [nuttx] no1wudi commented on a diff in pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
no1wudi commented on code in PR #8641: URL: https://github.com/apache/nuttx/pull/8641#discussion_r1119694810 ## libs/libc/stream/lib_bufferedoutstream.c: ## @@ -0,0 +1,154 @@ +/ + *

[GitHub] [nuttx] yamt commented on pull request #8129: net/tcp: correct behavior of SO_LINGER

2023-02-28 Thread via GitHub
yamt commented on PR #8129: URL: https://github.com/apache/nuttx/pull/8129#issuecomment-1447812720 > 1. Remove tcp_txdrain() from close() to avoid indefinitely block after this change, where do we block close() for SO_LINGER? -- This is an automated message from the

[GitHub] [nuttx] XiandongHu opened a new pull request, #8670: mtd: Extend isbad and markbad func for mtd_dev_s

2023-02-28 Thread via GitHub
XiandongHu opened a new pull request, #8670: URL: https://github.com/apache/nuttx/pull/8670 ## Add isbad and markbad interface in mtd_dev_s to support nand flash. ## Nand device driver must implement it. ## Test on yaffs2 filesystem. -- This is an automated message

[GitHub] [nuttx] no1wudi commented on pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
no1wudi commented on PR #8641: URL: https://github.com/apache/nuttx/pull/8641#issuecomment-1448130567 > OK, let's move the latest commit to another PR. -- 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] [nuttx] fjpanag commented on a diff in pull request #7525: Improvements in TCP connections allocation.

2023-02-28 Thread via GitHub
fjpanag commented on code in PR #7525: URL: https://github.com/apache/nuttx/pull/7525#discussion_r1119846160 ## net/tcp/tcp_conn.c: ## @@ -876,10 +889,26 @@ void tcp_free(FAR struct tcp_conn_s *conn) } #endif - /* Mark the connection available and put it into the free

[GitHub] [nuttx] centurysys closed issue #8537: [RFC] Nim language support

2023-02-28 Thread via GitHub
centurysys closed issue #8537: [RFC] Nim language support URL: https://github.com/apache/nuttx/issues/8537 -- 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 go to the specific comment. To unsubscribe,

[GitHub] [nuttx] masayuki2009 commented on pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
masayuki2009 commented on PR #8641: URL: https://github.com/apache/nuttx/pull/8641#issuecomment-1448169739 >OK, let's move the latest commit to another PR. >Emm, but last commit is just rename lib_rawsostream.c to lib_rawoutstream.c, should not causes any issue. @no1wudi

[nuttx] branch master updated: Performance optimizations in connection allocations.

2023-02-28 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 5e625b9cdb Performance optimizations in

[GitHub] [nuttx] jerpelea merged pull request #8669: Performance optimizations in connection allocations.

2023-02-28 Thread via GitHub
jerpelea merged PR #8669: URL: https://github.com/apache/nuttx/pull/8669 -- 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 go to the specific comment. To unsubscribe, e-mail:

[GitHub] [nuttx] masayuki2009 commented on pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
masayuki2009 commented on PR #8641: URL: https://github.com/apache/nuttx/pull/8641#issuecomment-1447959277 @no1wudi Hmm, the latest commit causes the issue again. ``` commit ef7278f13fe3b567ba42a315240bc9dd87646ae7 (HEAD -> master, origin/master, origin/HEAD) Author: Huang

[GitHub] [nuttx] qinwei2004 commented on pull request #8665: arm64: ARMv8-r(Cortex-R82) support

2023-02-28 Thread via GitHub
qinwei2004 commented on PR #8665: URL: https://github.com/apache/nuttx/pull/8665#issuecomment-1448191250 > @qinwei2004 I think we should divide one commit into smaller ones. For example, PSCI related changs. MPIDR related changes, Cortex-R related changes and so on. all done, please

[GitHub] [nuttx] fjpanag opened a new pull request, #8669: Performance optimizations in connection allocations.

2023-02-28 Thread via GitHub
fjpanag opened a new pull request, #8669: URL: https://github.com/apache/nuttx/pull/8669 ## Summary Implements some performance optimizations, as noted [here](https://github.com/apache/nuttx/pull/7525#discussion_r1113605986). ## Impact Better performance when dynamic

[GitHub] [nuttx] fjpanag commented on a diff in pull request #7525: Improvements in TCP connections allocation.

2023-02-28 Thread via GitHub
fjpanag commented on code in PR #7525: URL: https://github.com/apache/nuttx/pull/7525#discussion_r1119870510 ## net/ieee802154/ieee802154_conn.c: ## @@ -188,9 +198,22 @@ void ieee802154_conn_free(FAR struct ieee802154_conn_s *conn) memset(conn, 0, sizeof(*conn)); - /*

[GitHub] [nuttx] Gary-Hobson commented on a diff in pull request #8619: Implement the trace function and add tracepoints for the startup process

2023-02-28 Thread via GitHub
Gary-Hobson commented on code in PR #8619: URL: https://github.com/apache/nuttx/pull/8619#discussion_r1120086656 ## binfmt/binfmt_initialize.c: ## @@ -28,6 +28,7 @@ #include #include #include +#include Review Comment: I didn't find a suitable header file to put it

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #8641: URL: https://github.com/apache/nuttx/pull/8641#discussion_r1120008423 ## libs/libc/stream/lib_bufferedoutstream.c: ## @@ -0,0 +1,114 @@ +/ + *

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #8665: arm64: ARMv8-r(Cortex-R82) support

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #8665: URL: https://github.com/apache/nuttx/pull/8665#discussion_r1120248244 ## arch/arm64/src/common/arm64_gicv3.c: ## @@ -170,7 +196,7 @@ void arm64_gic_irq_enable(unsigned int intid) if (GIC_IS_SPI(intid)) {

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8671: esp32c3: Fix missing irq timer

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8671: URL: https://github.com/apache/nuttx/pull/8671 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (5e625b9cdb -> 49a5f02fb1)

2023-02-28 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/nuttx.git from 5e625b9cdb Performance optimizations in connection allocations. add 49a5f02fb1 esp32c3: Fix missing irq timer

[GitHub] [nuttx] acassis opened a new pull request, #8671: esp32c3: Fix missing irq timer

2023-02-28 Thread via GitHub
acassis opened a new pull request, #8671: URL: https://github.com/apache/nuttx/pull/8671 ## Summary Fix missing irq timer ## Impact Only ESP32C3 ## Testing ESP32C3-Devkit -- This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [nuttx] chirping78 commented on issue #8616: gdb function info_nxthreads show the PC incorrectly for cortex-m

2023-02-28 Thread via GitHub
chirping78 commented on issue #8616: URL: https://github.com/apache/nuttx/issues/8616#issuecomment-1448392878 Take some time look into this today. It seem relates to how the gdb script calculate whether the core has FPU. -- This is an automated message from the Apache Git Service. To

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #8641: URL: https://github.com/apache/nuttx/pull/8641#discussion_r1120480425 ## libs/libc/stream/lib_bufferedoutstream.c: ## @@ -0,0 +1,120 @@ +/ + *

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #8619: Implement the trace function and add tracepoints for the startup process

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #8619: URL: https://github.com/apache/nuttx/pull/8619#discussion_r1120490447 ## include/nuttx/sched_note.h: ## @@ -205,6 +251,27 @@ enum note_type_e #endif }; +enum note_tag_e +{ + NOTE_TAG_ALWAYS = 0, + NOTE_TAG_ARCH, +

[GitHub] [nuttx] gustavonihei opened a new pull request, #8673: risc-v/esp32c3: Remove erroneous interrupt disable

2023-02-28 Thread via GitHub
gustavonihei opened a new pull request, #8673: URL: https://github.com/apache/nuttx/pull/8673 ## Summary This PR intends to fix a crash occurring on the ESP32-C3 Timer driver due to a misplaced call for disabling the interrupts. ## Impact Fix for broken driver.

[GitHub] [nuttx] acassis opened a new pull request, #8672: xtensa/common: Fix Xtensa interrupt stack context restore issue

2023-02-28 Thread via GitHub
acassis opened a new pull request, #8672: URL: https://github.com/apache/nuttx/pull/8672 ## Summary Fix Xtensa interrupt stack context restore issue ## Impact Avoid ESP32 sporadic crashing ## Testing esp32-devkitc -- This is an automated message from the Apache Git

[nuttx] branch master updated (f47cb67da6 -> e4d219ca06)

2023-02-28 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from f47cb67da6 xtensa/common: Fix Xtensa interrupt stack context restore issue add e4d219ca06 risc-v/esp32c3:

[GitHub] [nuttx] anchao commented on pull request #8129: net/tcp: correct behavior of SO_LINGER

2023-02-28 Thread via GitHub
anchao commented on PR #8129: URL: https://github.com/apache/nuttx/pull/8129#issuecomment-1448714017 If SO_LINGER is enabled, tcp_close will not release the conn instance immediately, all pending sent data will wait for tcp_timer() to be sent before releasing it in tcp_close_work --

[GitHub] [nuttx] gustavonihei merged pull request #8672: xtensa/common: Fix Xtensa interrupt stack context restore issue

2023-02-28 Thread via GitHub
gustavonihei merged PR #8672: URL: https://github.com/apache/nuttx/pull/8672 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (49a5f02fb1 -> f47cb67da6)

2023-02-28 Thread gustavonihei
This is an automated email from the ASF dual-hosted git repository. gustavonihei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 49a5f02fb1 esp32c3: Fix missing irq timer add f47cb67da6 xtensa/common: Fix Xtensa interrupt stack context

[GitHub] [nuttx] pkarashchenko merged pull request #8673: risc-v/esp32c3: Remove erroneous interrupt disable

2023-02-28 Thread via GitHub
pkarashchenko merged PR #8673: URL: https://github.com/apache/nuttx/pull/8673 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx-website] branch asf-site updated: Publishing web: b50f5ca4ed22743959c1160aab5dcc9ae18b3eff docs: e4d219ca0632cfa79a9bdbb970d4596a0ca7e6a0

2023-02-28 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/nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 79c725f7 Publishing web:

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8674: tools/cxd56: Fix typo in mkspk tool

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8674: URL: https://github.com/apache/nuttx/pull/8674 ## Summary Fix typo in mkspk tool for cxd56. ## Impact Only spresense board. ## Testing Build all spresense defconfigs. -- This is an automated message from the Apache Git

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8675: tools/Unix.mk: Add VERSION_ARG to argument of version.sh

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8675: URL: https://github.com/apache/nuttx/pull/8675 ## Summary Allow the version argument to be specified externally into the .version that is forced to be created. There is no impact as long as it is used in the same way as before. ##

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8676: arch: cxd56xx: Update miscellaneous cxd56xx drivers

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8676: URL: https://github.com/apache/nuttx/pull/8676 ## Summary * Fix eMMC uninitialize function * Fix a warning in cxd56_serial.c * Disable SubCore to use DMA * Fix emmc pin control on initialization error ## Impact Only spresense

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8677: arch: cxd56xx: Fix gnss poll when an event has already occurred

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8677: URL: https://github.com/apache/nuttx/pull/8677 ## Summary Fix an issue that poll with timeout=0 cannot detect events that have already occurred. ## Impact Only spresense board. ## Testing Spresense GPS works well. --

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8678: arch: cxd56xx: Fix a freezing issue caused by power control

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8678: URL: https://github.com/apache/nuttx/pull/8678 ## Summary - Add retry timeout to prevent inifinite loop - Change the register operation of power control - Add exclusive control by semaphore into some functions - Add short delay until

[GitHub] [nuttx] Gary-Hobson commented on a diff in pull request #8619: Implement the trace function and add tracepoints for the startup process

2023-02-28 Thread via GitHub
Gary-Hobson commented on code in PR #8619: URL: https://github.com/apache/nuttx/pull/8619#discussion_r1121091841 ## include/nuttx/sched_note.h: ## @@ -205,6 +251,27 @@ enum note_type_e #endif }; +enum note_tag_e +{ + NOTE_TAG_ALWAYS = 0, + NOTE_TAG_ARCH, + NOTE_TAG_APP,

[GitHub] [nuttx] Gary-Hobson commented on a diff in pull request #8619: Implement the trace function and add tracepoints for the startup process

2023-02-28 Thread via GitHub
Gary-Hobson commented on code in PR #8619: URL: https://github.com/apache/nuttx/pull/8619#discussion_r1121092170 ## include/nuttx/trace.h: ## @@ -1,4 +1,3 @@ - Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8676: arch: cxd56xx: Update miscellaneous cxd56xx drivers

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8676: URL: https://github.com/apache/nuttx/pull/8676 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (d71562c794 -> b576a26d51)

2023-02-28 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/nuttx.git from d71562c794 tools/cxd56: Fix nxstyle new 700610e625 arch: cxd56xx: Fix eMMC uninitialize function new

[nuttx] 03/04: arch: cxd56xx: Disable SubCore to use DMA

2023-02-28 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/nuttx.git commit 57ca5c040127a90ff648ed517051c162d305fa49 Author: SPRESENSE <41312067+sprese...@users.noreply.github.com> AuthorDate:

[nuttx] 02/04: arch: cxd56xx: Fix a warning in cxd56_serial.c

2023-02-28 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/nuttx.git commit 134424da18f14bdbb6e7482c56e825abe666100f Author: SPRESENSE <41312067+sprese...@users.noreply.github.com> AuthorDate:

[nuttx] 04/04: arch: cxd56xx: Fix emmc pin control on initialization error

2023-02-28 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/nuttx.git commit b576a26d51cc5cf0c6af9a3c73e342f1d8254254 Author: SPRESENSE <41312067+sprese...@users.noreply.github.com> AuthorDate:

[nuttx] 01/04: arch: cxd56xx: Fix eMMC uninitialize function

2023-02-28 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/nuttx.git commit 700610e625f2bba3a322057fb099da3559042818 Author: SPRESENSE <41312067+sprese...@users.noreply.github.com> AuthorDate:

[GitHub] [nuttx] qinwei2004 commented on a diff in pull request #8665: arm64: ARMv8-r(Cortex-R82) support

2023-02-28 Thread via GitHub
qinwei2004 commented on code in PR #8665: URL: https://github.com/apache/nuttx/pull/8665#discussion_r1121015641 ## arch/arm64/src/common/arm64_gicv3.c: ## @@ -170,7 +196,7 @@ void arm64_gic_irq_enable(unsigned int intid) if (GIC_IS_SPI(intid)) {

[nuttx] branch master updated: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread masayuki
This is an automated email from the ASF dual-hosted git repository. masayuki pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new b96035885a stdio: Implement simple buffered

[GitHub] [nuttx] masayuki2009 merged pull request #8641: stdio: Implement simple buffered out stream for vdprintf

2023-02-28 Thread via GitHub
masayuki2009 merged PR #8641: URL: https://github.com/apache/nuttx/pull/8641 -- 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 go to the specific comment. To unsubscribe, e-mail:

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8678: arch: cxd56xx: Fix a freezing issue caused by power control

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8678: URL: https://github.com/apache/nuttx/pull/8678 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (b96035885a -> 1877be8ce9)

2023-02-28 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/nuttx.git from b96035885a stdio: Implement simple buffered out stream for vdprintf add 1877be8ce9 arch: cxd56xx: Fix a

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8677: arch: cxd56xx: Fix gnss poll when an event has already occurred

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8677: URL: https://github.com/apache/nuttx/pull/8677 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (1877be8ce9 -> d643fb8511)

2023-02-28 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/nuttx.git from 1877be8ce9 arch: cxd56xx: Fix a freezing issue caused by power control add d643fb8511 arch: cxd56xx: Fix gnss

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8674: tools/cxd56: Fix typo in mkspk tool

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8674: URL: https://github.com/apache/nuttx/pull/8674 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated (d643fb8511 -> d71562c794)

2023-02-28 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/nuttx.git from d643fb8511 arch: cxd56xx: Fix gnss poll when an event has already occurred add fc1c8a4d74 tools/cxd56: Fix

[nuttx] 03/07: arm64: ARMv8-r(Cortex-R82) support

2023-02-28 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/nuttx.git commit 0841f4dbaa700ef61b7c476f31cda8ef31bd0a95 Author: qinwei1 AuthorDate: Tue Feb 28 17:01:24 2023 +0800 arm64:

[nuttx] 05/07: arm64: add 64-bit time for all arm64 platform

2023-02-28 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/nuttx.git commit d5c6b8a94b61873e427805d99af9d1bb1604000c Author: qinwei1 AuthorDate: Tue Feb 28 17:30:13 2023 +0800 arm64: add

[nuttx] 02/07: arm64: add ARCH_EARLY_PRINT support

2023-02-28 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/nuttx.git commit 4240723b7850f5274a9629383b2c71d510d6db7b Author: qinwei1 AuthorDate: Tue Feb 28 15:07:42 2023 +0800 arm64: add

[nuttx] 04/07: arm64: ARMv8-r(Cortex-R82) support(add ARCH_SET_VMPIDR_EL2 option)

2023-02-28 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/nuttx.git commit 4cb5ff3353af37a50603f6c5a2b4fd9aceae107f Author: qinwei1 AuthorDate: Tue Feb 28 17:02:37 2023 +0800 arm64:

[nuttx] 07/07: Update arm64_head.S

2023-02-28 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/nuttx.git commit fa359e355c231984a7401bc3e0a3b100133b0ba4 Author: qinwei2004 <104544671+qinwei2...@users.noreply.github.com>

[nuttx] 06/07: arm64: ARMv8-r(Cortex-R82) support(mpid fix)

2023-02-28 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/nuttx.git commit 518eb4076ed4ccf46eaf7f79a38b862b30eae74b Author: qinwei1 AuthorDate: Tue Feb 28 21:31:23 2023 +0800 arm64:

[nuttx] branch master updated (b576a26d51 -> fa359e355c)

2023-02-28 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/nuttx.git from b576a26d51 arch: cxd56xx: Fix emmc pin control on initialization error new e5564a9872 arm64: PSCI config

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8665: arm64: ARMv8-r(Cortex-R82) support

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8665: URL: https://github.com/apache/nuttx/pull/8665 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] 01/07: arm64: PSCI config support

2023-02-28 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/nuttx.git commit e5564a98723563f235508a255debeb725b3aed37 Author: qinwei1 AuthorDate: Tue Feb 28 14:23:02 2023 +0800 arm64: PSCI

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8675: tools/Unix.mk: Add VERSION_ARG to argument of version.sh

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8675: URL: https://github.com/apache/nuttx/pull/8675 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated: tools/Unix.mk: Add VERSION_ARG to argument of version.sh

2023-02-28 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new a3cce487ca tools/Unix.mk: Add VERSION_ARG to

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #8646: Usb: add sim usb device and host driver

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on PR #8646: URL: https://github.com/apache/nuttx/pull/8646#issuecomment-1449507725 > > @btashton do you have progress, thanks? > > Sorry for the delay. Let's see if this works, it looks like it frees up about 13GB. > > #8680 Thanks! @btashton

[GitHub] [nuttx] xiaoxiang781216 merged pull request #8680: CI: Free space on worker building container

2023-02-28 Thread via GitHub
xiaoxiang781216 merged PR #8680: URL: https://github.com/apache/nuttx/pull/8680 -- 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 go to the specific comment. To unsubscribe, e-mail:

[nuttx] branch master updated: CI: Free space on worker building container

2023-02-28 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 05801f9fec CI: Free space on worker building

[GitHub] [nuttx] SPRESENSE opened a new pull request, #8679: boards: spresense: Update miscellaneous spresense drivers

2023-02-28 Thread via GitHub
SPRESENSE opened a new pull request, #8679: URL: https://github.com/apache/nuttx/pull/8679 ## Summary * Fix nxstyle * Remove wrong build condition * Remove duplicate definitions * Support using GPIO for power control * Update eMMC driver * Add configuration for eMMC power

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #8646: Usb: add sim usb device and host driver

2023-02-28 Thread via GitHub
xiaoxiang781216 commented on PR #8646: URL: https://github.com/apache/nuttx/pull/8646#issuecomment-1449376926 @btashton do you have progress, thanks? -- 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 go

[GitHub] [nuttx] btashton opened a new pull request, #8680: CI: Free space on worker building container

2023-02-28 Thread via GitHub
btashton opened a new pull request, #8680: URL: https://github.com/apache/nuttx/pull/8680 ## Summary Remove large unused tools from worker that builds docker containers. ## Testing CI should be able to build image again. -- This is an automated message from the

[GitHub] [nuttx] btashton commented on pull request #8646: Usb: add sim usb device and host driver

2023-02-28 Thread via GitHub
btashton commented on PR #8646: URL: https://github.com/apache/nuttx/pull/8646#issuecomment-1449389147 > @btashton do you have progress, thanks? Sorry for the delay. Let's see if this works, it looks like it frees up about 13GB. https://github.com/apache/nuttx/pull/8680 --

[GitHub] [nuttx] btashton commented on pull request #8680: CI: Free space on worker building container

2023-02-28 Thread via GitHub
btashton commented on PR #8680: URL: https://github.com/apache/nuttx/pull/8680#issuecomment-1449412106 Looks like we need to clean up some more space. I will optimize the intermediate containers to be smaller. -- This is an automated message from the Apache Git Service. To respond to

[GitHub] [nuttx] XiandongHu closed pull request #8670: mtd: Extend isbad and markbad func for mtd_dev_s

2023-02-28 Thread via GitHub
XiandongHu closed pull request #8670: mtd: Extend isbad and markbad func for mtd_dev_s URL: https://github.com/apache/nuttx/pull/8670 -- 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 go to the specific