Re: [PR] sim/wifidriver: Support the sim wifi. [nuttx]

2023-10-12 Thread via GitHub
xiaoxiang781216 merged PR #10886: URL: https://github.com/apache/nuttx/pull/10886 -- 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: refine: move BIT Macro to nuttx/bits.h

2023-10-12 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 061be5f18e refine: move BIT Macro to

Re: [PR] refine: move BIT Macro to nuttx/bits.h [nuttx]

2023-10-12 Thread via GitHub
xiaoxiang781216 merged PR #10892: URL: https://github.com/apache/nuttx/pull/10892 -- 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:

Re: [PR] Opensbi 1.3.1 [nuttx]

2023-10-12 Thread via GitHub
eenurkka closed pull request #10900: Opensbi 1.3.1 URL: https://github.com/apache/nuttx/pull/10900 -- 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:

[PR] Opensbi 1.3.1 [nuttx]

2023-10-12 Thread via GitHub
eenurkka opened a new pull request, #10900: URL: https://github.com/apache/nuttx/pull/10900 ## Summary Update to OpenSBI 1.3.1 ## Impact src/mpfs_domain.c needs also the following flag: mpfs_domains[i].fw_region_inited = true; ## Testing Saluki-v2 with

[PR] {BP-10860} libxx: Use gnu++20 option only if using libcxx [nuttx]

2023-10-12 Thread via GitHub
jerpelea opened a new pull request, #10901: URL: https://github.com/apache/nuttx/pull/10901 ## Summary Fix an issue that gnu++20 option is always used. Essentially, when cxx is not used, gnu++17 should be retained. ## Impact RELEASE ## Testing NONE -- This is

[nuttx] branch master updated: wifi/simdriver: Support the sim wifi.

2023-10-12 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 d27ca03b6c wifi/simdriver: Support the sim

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
leducp commented on PR #10902: URL: https://github.com/apache/nuttx/pull/10902#issuecomment-1759643771 Note: the code in rp2040_bringup.c is here to show how to add a stepper in a board. It shall be removed **before** merge hence the reason why this PR is in draft. I plan to add a

[nuttx] branch releases/12.3 updated: libxx: Use gnu++20 option only if using libcxx

2023-10-12 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch releases/12.3 in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/releases/12.3 by this push: new 00c5fa60af libxx: Use

Re: [PR] examples/sensor_fusion: Support for Madgwick Fusion lib and example [nuttx-apps]

2023-10-12 Thread via GitHub
fdcavalcanti commented on PR #2113: URL: https://github.com/apache/nuttx-apps/pull/2113#issuecomment-1759696955 Thanks for the code review! All issues addressed. Only the mixed case issue on 3rd party library remains. -- This is an automated message from the Apache Git Service. To

Re: [PR] {BP-10860} libxx: Use gnu++20 option only if using libcxx [nuttx]

2023-10-12 Thread via GitHub
pkarashchenko merged PR #10901: URL: https://github.com/apache/nuttx/pull/10901 -- 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:

Re: [PR] ESP32-S3-EYE: I2C, SPI and LCD support [nuttx]

2023-10-12 Thread via GitHub
tmedicci commented on PR #10884: URL: https://github.com/apache/nuttx/pull/10884#issuecomment-1759438424 Do you think Is it possible to update the entry of [this board](https://nuttx.apache.org/docs/latest/platforms/xtensa/esp32s3/boards/esp32s3-eye/index.html) on the docs? The idea is to

[PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
leducp opened a new pull request, #10902: URL: https://github.com/apache/nuttx/pull/10902 ## Summary Add a stepper generic upper-half driver Add a stepper A4988 lower-half driver ## Impact ## Testing -- This is an automated message from the Apache Git Service.

Re: [PR] rw spinlock [nuttx]

2023-10-12 Thread via GitHub
TaiJuWu commented on code in PR #10776: URL: https://github.com/apache/nuttx/pull/10776#discussion_r1354283729 ## include/nuttx/spinlock.h: ## @@ -32,6 +32,14 @@ #include +#ifdef CONFIG_RW_SPINLOCK +#include +typedef atomic_int rwlock_t; Review Comment: It can't.

Re: [PR] rw spinlock [nuttx]

2023-10-12 Thread via GitHub
TaiJuWu commented on code in PR #10776: URL: https://github.com/apache/nuttx/pull/10776#discussion_r1354283729 ## include/nuttx/spinlock.h: ## @@ -32,6 +32,14 @@ #include +#ifdef CONFIG_RW_SPINLOCK +#include +typedef atomic_int rwlock_t; Review Comment: It can't.

Re: [PR] rw spinlock [nuttx]

2023-10-12 Thread via GitHub
TaiJuWu commented on code in PR #10776: URL: https://github.com/apache/nuttx/pull/10776#discussion_r1354283729 ## include/nuttx/spinlock.h: ## @@ -32,6 +32,14 @@ #include +#ifdef CONFIG_RW_SPINLOCK +#include +typedef atomic_int rwlock_t; Review Comment: It can't.

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
leducp commented on PR #10902: URL: https://github.com/apache/nuttx/pull/10902#issuecomment-1760042950 > should we put it into https://github.com/apache/nuttx/tree/master/drivers/motor? Please fix ci issue too, @leducp . Gladly! I wasn't sure of the approach since the stepper

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
xiaoxiang781216 commented on PR #10902: URL: https://github.com/apache/nuttx/pull/10902#issuecomment-1759849805 should we put it into https://github.com/apache/nuttx/tree/master/drivers/motor? Please fix ci issue too, @leducp . -- This is an automated message from the Apache Git

Re: [PR] add munmap logic to pseudofs [nuttx]

2023-10-12 Thread via GitHub
xiaoxiang781216 merged PR #10880: URL: https://github.com/apache/nuttx/pull/10880 -- 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: add munmap logic to pseudofs

2023-10-12 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 696717b28b add munmap logic to pseudofs

Re: [PR] ESP32-S3-EYE: I2C, SPI and LCD support [nuttx]

2023-10-12 Thread via GitHub
casaroli commented on PR #10884: URL: https://github.com/apache/nuttx/pull/10884#issuecomment-1760313082 > Do you think Is it possible to update the entry of [this board](https://nuttx.apache.org/docs/latest/platforms/xtensa/esp32s3/boards/esp32s3-eye/index.html) on the docs? The idea is

Re: [I] imxrt/lpi2c multibyte read broken following DMA addition [nuttx]

2023-10-12 Thread via GitHub
acassis commented on issue #10853: URL: https://github.com/apache/nuttx/issues/10853#issuecomment-1760368091 Yes, normally we revert as last option when nobody is able to fix the issue. I think @davids5 will be find it! -- This is an automated message from the Apache Git Service. To

Re: [PR] arm64: Add support for FIQ interrupts [nuttx]

2023-10-12 Thread via GitHub
acassis merged PR #10888: URL: https://github.com/apache/nuttx/pull/10888 -- 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: arm64: Add support for FIQ interrupts

2023-10-12 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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new cef8c598c7 arm64: Add support for FIQ

[nuttx] branch master updated (cef8c598c7 -> 0f56d3428b)

2023-10-12 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from cef8c598c7 arm64: Add support for FIQ interrupts new e99966ec70 chore(esp32s3_board_i2c): suppress warning

Re: [PR] ESP32-S3-EYE: I2C, SPI and LCD support [nuttx]

2023-10-12 Thread via GitHub
acassis merged PR #10884: URL: https://github.com/apache/nuttx/pull/10884 -- 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] 04/07: fix(esp32s3-eye): unexpose backlight GPIO

2023-10-12 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/nuttx.git commit 20b5d2b84c22a243b675305b71ad5bb2baa7d004 Author: Marco Casaroli AuthorDate: Wed Oct 11 19:05:54 2023 +

[nuttx] 07/07: feat(esp32s3-eye): lcd defconfig

2023-10-12 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/nuttx.git commit 0f56d3428bf11b81899b25de8f1a369efcd30afc Author: Marco Casaroli AuthorDate: Tue Oct 10 11:56:23 2023 +

Re: [I] Adding signal handing for SEGV/BUS/... [nuttx]

2023-10-12 Thread via GitHub
acassis commented on issue #10898: URL: https://github.com/apache/nuttx/issues/10898#issuecomment-1760363044 @masayuki2009 @pkarashchenko @xiaoxiang781216 any idea why issue is happening? -- This is an automated message from the Apache Git Service. To respond to the message, please log

[nuttx] 03/07: fix(esp32s3-eye): spiflash declaration

2023-10-12 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/nuttx.git commit b7bc0e542cf2995e8275cf96588fa6cef0fcf1a0 Author: Marco Casaroli AuthorDate: Tue Oct 10 10:58:31 2023 +

[nuttx] 06/07: feat(esp32s3-eye): i2c defconfig

2023-10-12 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/nuttx.git commit e5b4b58f96fdc358681360af4b3fce5cc5590534 Author: Marco Casaroli AuthorDate: Tue Oct 10 11:12:39 2023 +

[nuttx] 01/07: chore(esp32s3_board_i2c): suppress warning

2023-10-12 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/nuttx.git commit e99966ec703497c1c57ed8a4d84e7805b6872418 Author: Marco Casaroli AuthorDate: Tue Oct 10 10:05:45 2023 +

[nuttx] 05/07: feat(esp32s3-eye): SPI and LCD

2023-10-12 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/nuttx.git commit effab1bd61f5a35f76f78150e16a2f6dc7e90b23 Author: Marco Casaroli AuthorDate: Tue Oct 10 10:59:50 2023 +

[nuttx] 02/07: feat(esp32s3-eye): I2C

2023-10-12 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/nuttx.git commit 09ee163d378a57723f722fffe58a62625147b399 Author: Marco Casaroli AuthorDate: Tue Oct 10 10:57:40 2023 +

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
acassis commented on code in PR #10902: URL: https://github.com/apache/nuttx/pull/10902#discussion_r1357376812 ## Kconfig: ## @@ -2034,6 +2034,39 @@ config DEBUG_MOTOR_INFO endif # DEBUG_MOTOR +config DEBUG_STEPPER + bool "Stepper Debug Features" Review Comment:

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
acassis commented on PR #10902: URL: https://github.com/apache/nuttx/pull/10902#issuecomment-1760330335 @leducp really cool idea! Please include later an apps/example/stepper and some basic documentation -- This is an automated message from the Apache Git Service. To respond to the

[nuttx-website] branch asf-site updated: Publishing web: 07abea83aab63736f2895f109c448ae631509f46 docs: 0f56d3428bf11b81899b25de8f1a369efcd30afc

2023-10-12 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 3e43caec Publishing web:

[PR] Fix handling of ioctl except SIOCDENYINETSOCK [nuttx-apps]

2023-10-12 Thread via GitHub
SPRESENSE opened a new pull request, #2116: URL: https://github.com/apache/nuttx-apps/pull/2116 ## Summary Fix handling of ioctl except SIOCDENYINETSOCK ## Impact gs2200 daemon. ## Testing Test with spresense borad. -- This is an automated message from the

Re: [PR] Add stepper interface [nuttx]

2023-10-12 Thread via GitHub
xiaoxiang781216 commented on PR #10902: URL: https://github.com/apache/nuttx/pull/10902#issuecomment-1760632714 > > should we put it into https://github.com/apache/nuttx/tree/master/drivers/motor? Please fix ci issue too, @leducp . > > Gladly! I wasn't sure of the approach since the