Re: [PR] Allow apps to customize NuttX build time variables [nuttx]

2024-02-27 Thread via GitHub
casaroli commented on PR #11202: URL: https://github.com/apache/nuttx/pull/11202#issuecomment-1968417548 I have moved the file to `tools` to reduce noise in the root dir. I also added the `CONFIG_EXAMPLES_LIBTEST` to `sim:module` so we are sure that at least the build works in the

Re: [PR] examples/hx711: add new program to test hx711 chip [nuttx-apps]

2024-02-27 Thread via GitHub
mlyszczek commented on PR #2317: URL: https://github.com/apache/nuttx-apps/pull/2317#issuecomment-1968406041 I think it looks kinda bad, it's harder to see how output is going to be printed and is hard to grep later on. Even Linux allows for long strings without breaking. How about

Re: [PR] examples/hx711: add new program to test hx711 chip [nuttx-apps]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on PR #2317: URL: https://github.com/apache/nuttx-apps/pull/2317#issuecomment-1968388644 > These are strings. Aren't strings exempted from this check? I wanted to remove indentation at first, but then checker complains about no indentation. you can split to

(nuttx-apps) branch master updated (2d6f5f230 -> 17539f134)

2024-02-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/nuttx-apps.git from 2d6f5f230 netinit: Add check mount path retry option for delayed mounts new 2b4a25c8d examples/fmsynth:

(nuttx-apps) 01/02: examples/fmsynth: Fix freaze when execute it in 2nd time

2024-02-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/nuttx-apps.git commit 2b4a25c8d55a15d7363649a5e7d9c8795cf7a18b Author: SPRESENSE <41312067+sprese...@users.noreply.github.com>

Re: [PR] examples/fmsynth: Fix freaze when execute it in 2nd time [nuttx-apps]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #2318: URL: https://github.com/apache/nuttx-apps/pull/2318 -- 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-apps) 02/02: Fix illegal coding style on nxaudio.c

2024-02-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/nuttx-apps.git commit 17539f13408fae08a635913b16f865db1e282e7e Author: Takayoshi Koizumi

Re: [PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
masayuki2009 commented on PR #11797: URL: https://github.com/apache/nuttx/pull/11797#issuecomment-1968353656 >The following error happened with rv-virt:smp64 and rv-virt:smp. @GUIDINGLI The following crash happened with maix-bit:smp on dev board. ``` user_main:

Re: [PR] examples/hx711: add new program to test hx711 chip [nuttx-apps]

2024-02-27 Thread via GitHub
mlyszczek commented on PR #2317: URL: https://github.com/apache/nuttx-apps/pull/2317#issuecomment-1968336199 These are strings. Aren't strings exempted from this check? I wanted to remove indentation at first, but then checker complains about no indentation. -- This is an automated

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505400760 ## audio/audio.c: ## @@ -166,6 +167,17 @@ static int audio_open(FAR struct file *filep) goto errout_with_lock; } + /* Call open method of

Re: [PR] sched/tcb: add preserved tcb flag to support static tcb [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11774: URL: https://github.com/apache/nuttx/pull/11774#discussion_r1505386835 ## sched/sched/sched_releasetcb.c: ## @@ -163,7 +163,10 @@ int nxsched_release_tcb(FAR struct tcb_s *tcb, uint8_t ttype) /* And, finally, release the

(nuttx) branch master updated (c14888e759 -> 1665114fd1)

2024-02-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/nuttx.git from c14888e759 xtensa/esp32s3: Add the return value of SPI driver add 1665114fd1 xtensa/esp32: Fix issue of system

Re: [PR] xtensa/esp32: Fix issue of system blocking when SPIRAM is used as stack [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #11802: URL: https://github.com/apache/nuttx/pull/11802 -- 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: xtensa/esp32s3: Add the return value of SPI driver

2024-02-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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new c14888e759 xtensa/esp32s3: Add the return

Re: [PR] xtensa/esp32s3: Add the return value of SPI driver [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #11801: URL: https://github.com/apache/nuttx/pull/11801 -- 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] build/cmake: fix empty BASE_DEFCONFIG [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1505377620 ## cmake/nuttx_mkconfig.cmake: ## @@ -40,6 +40,14 @@ if(COMPARE_RESULT EQUAL 0 AND EXISTS ${CONFIG_H}) return() endif() +set(BASE_DEFCONF

Re: [PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
masayuki2009 commented on PR #11797: URL: https://github.com/apache/nuttx/pull/11797#issuecomment-1968208683 @GUIDINGLI The following error happened with rv-virt:smp64 and rv-virt:smp. ``` nsh> ostest ... fpu_test: Started task FPU#2 at PID=12 FPU#2: pass 1

Re: [PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
masayuki2009 commented on PR #11797: URL: https://github.com/apache/nuttx/pull/11797#issuecomment-1968176582 @GUIDINGLI ``` common/riscv_cpupause.c: In function 'up_cpu_paused_restore': common/riscv_cpupause.c:208:3: warning: implicit declaration of function

Re: [PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
masayuki2009 commented on PR #11797: URL: https://github.com/apache/nuttx/pull/11797#issuecomment-1968140302 > @masayuki2009 Please review this @GUIDINGLI I will try this PR later. -- This is an automated message from the Apache Git Service. To respond to the message,

[PR] xtensa/esp32: Fix issue of system blocking when SPIRAM is used as stack [nuttx]

2024-02-27 Thread via GitHub
cwespressif opened a new pull request, #11802: URL: https://github.com/apache/nuttx/pull/11802 ## Summary - Fix issue of system blocking caused by Ext-SRAM-Cache MMU mapping when SPIRAM is used as a stack. The root cause reference: https://github.com/apache/nuttx/pull/11779

[PR] xtensa/esp32s3: Add the return value of SPI driver [nuttx]

2024-02-27 Thread via GitHub
cwespressif opened a new pull request, #11801: URL: https://github.com/apache/nuttx/pull/11801 ## Summary - Add the return value of SPI driver ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

Re: [PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
GUIDINGLI commented on PR #11797: URL: https://github.com/apache/nuttx/pull/11797#issuecomment-1968103918 @masayuki2009 Please review this -- 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

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505253070 ## audio/audio.c: ## @@ -166,6 +167,17 @@ static int audio_open(FAR struct file *filep) goto errout_with_lock; } + /* Call open method of lowerhalf if

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505255214 ## include/nuttx/audio/audio.h: ## @@ -534,6 +536,10 @@ typedef CODE void (*audio_callback_t)(FAR void *priv, uint16_t reason, struct audio_lowerhalf_s; struct

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505254926 ## audio/audio.c: ## @@ -223,7 +235,7 @@ static int audio_close(FAR struct file *filep) DEBUGASSERT(lower->ops->shutdown != NULL); audinfo("calling

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505253070 ## audio/audio.c: ## @@ -166,6 +167,17 @@ static int audio_open(FAR struct file *filep) goto errout_with_lock; } + /* Call open method of lowerhalf if

Re: [PR] examples/hx711: add new program to test hx711 chip [nuttx-apps]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on PR #2317: URL: https://github.com/apache/nuttx-apps/pull/2317#issuecomment-1968071356 @mlyszczek please fix the follow warning: ``` ERROR __main__.py:618: Check failed: /home/runner/work/nuttx-apps/nuttx-apps/apps/examples/hx711/CMakeLists.txt Error:

(nuttx-apps) branch master updated: netinit: Add check mount path retry option for delayed mounts

2024-02-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/nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 2d6f5f230 netinit: Add check mount path

Re: [PR] netinit: Add check mount path retry option for delayed mounts [nuttx-apps]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #2313: URL: https://github.com/apache/nuttx-apps/pull/2313 -- 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] rv-virt: Add .init_section to linker script [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11794: URL: https://github.com/apache/nuttx/pull/11794#discussion_r1505246980 ## boards/risc-v/qemu-rv/rv-virt/scripts/ld.script: ## @@ -78,30 +86,6 @@ SECTIONS _edata = . ; } - /* C++ support. For each global and static

Re: [PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11799: URL: https://github.com/apache/nuttx/pull/11799#discussion_r1505239075 ## audio/audio.c: ## @@ -223,7 +235,7 @@ static int audio_close(FAR struct file *filep) DEBUGASSERT(lower->ops->shutdown != NULL);

[I] Can't create new folder on the dialog when vscode.window.showOpenDialog is called on WSL environment. [nuttx]

2024-02-27 Thread via GitHub
takayoshi-k opened a new issue, #11800: URL: https://github.com/apache/nuttx/issues/11800 Hi, vscode.window.showOpenDialog method requests to open a file exproler dialog on the host system. On the WSL environment, dialog is not opened and use command palet area to select a folder

Re: [PR] Modify the existing process of LocalSocket to support LocalSocket functionality [nuttx]

2024-02-27 Thread via GitHub
wangchen61698 commented on PR #11778: URL: https://github.com/apache/nuttx/pull/11778#issuecomment-1968043936 > @wangchen61698 there are many modifications in many files and you didn't include any comment about Testing. Did you test it? How did you test it? Please include more information

Re: [PR] Modify the existing process of LocalSocket to support LocalSocket functionality [nuttx]

2024-02-27 Thread via GitHub
wangchen61698 commented on PR #11778: URL: https://github.com/apache/nuttx/pull/11778#issuecomment-1968040746 > The testing information has been supplemented -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

Re: [PR] Modify the existing process of LocalSocket to support LocalSocket functionality [nuttx]

2024-02-27 Thread via GitHub
wangchen61698 closed pull request #11778: Modify the existing process of LocalSocket to support LocalSocket functionality URL: https://github.com/apache/nuttx/pull/11778 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

Re: [PR] Modify the existing process of LocalSocket to support LocalSocket functionality [nuttx]

2024-02-27 Thread via GitHub
wangchen61698 commented on PR #11778: URL: https://github.com/apache/nuttx/pull/11778#issuecomment-1968040481 > @wangchen61698 there are many modifications in many files and you didn't include any comment about Testing. Did you test it? How did you test it? Please include more information

Re: [PR] arch/arm/samv7: Initial support of SocketLIN master interface [nuttx]

2024-02-27 Thread via GitHub
xucheng5 commented on PR #11002: URL: https://github.com/apache/nuttx/pull/11002#issuecomment-1968028950 > > maybe we can use `lin_frame_t` instead of `struct can_frame` to make a difference between can and lin which means use `typedef struct can_frame lin_frame_t` to redefine `struct

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1505203174 ## cmake/nuttx_mkconfig.cmake: ## @@ -40,6 +40,16 @@ if(COMPARE_RESULT EQUAL 0 AND EXISTS ${CONFIG_H}) return() endif() +set(DEFCONF_VAL

(nuttx-website) branch asf-site updated: Publishing web: f355c37abb2c2dea4b5ff1c582aacf9520a34e3a docs: 9b1c451f2f881077cd7d56f6496ea3c06ea30f17

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

[PR] examples/fmsynth: Fix freaze when execute it in 2nd time [nuttx-apps]

2024-02-27 Thread via GitHub
SPRESENSE opened a new pull request, #2318: URL: https://github.com/apache/nuttx-apps/pull/2318 ## Summary Fix a freaze BUG when the example is executed again after 1st execution. ## Impact examples/fmsynth ## Testing Verify if fmsynth examples work again

[PR] audio: Add setup method and add reference counter on shutdown [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE opened a new pull request, #11799: URL: https://github.com/apache/nuttx/pull/11799 ## Summary Add an 'setup' method on the 'struct audio_ops_s' to notify to the driver that the related device file has been opened and is ready for use. And also add refcount argument on

Re: [PR] boards/stm32f411-minimum: add support for /dev/gpio* [nuttx]

2024-02-27 Thread via GitHub
mlyszczek commented on PR #11798: URL: https://github.com/apache/nuttx/pull/11798#issuecomment-1967748237 Hmm... you think? I named them exactly as they are printed on the PCB. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

Re: [PR] boards/stm32f411-minimum: add support for /dev/gpio* [nuttx]

2024-02-27 Thread via GitHub
acassis commented on PR #11798: URL: https://github.com/apache/nuttx/pull/11798#issuecomment-1967737360 @mlyszczek I suggest you to use pin PAx, PBx, PCx, etc, because if someone see /dev/gpio_a0 could be induced to think it is an analog, because this is the naming used for example in

Re: [PR] boards/stm32f411-minimum: add support for /dev/gpio* [nuttx]

2024-02-27 Thread via GitHub
mlyszczek commented on PR #11798: URL: https://github.com/apache/nuttx/pull/11798#issuecomment-1967562274 For reference - it looks like it ``` ┌── enable gpio subsystem ──┐ │

Re: [I] Feature request: Software MAC support [nuttx]

2024-02-27 Thread via GitHub
ryao commented on issue #11722: URL: https://github.com/apache/nuttx/issues/11722#issuecomment-1967543473 > Nice idea, it will be more useful if software MAC can work with other chips. The RP2040 is somewhat special, although I imagine if there was a way to use the following with

[PR] boards/stm32f411-minimum: add support for /dev/gpio* [nuttx]

2024-02-27 Thread via GitHub
mlyszczek opened a new pull request, #11798: URL: https://github.com/apache/nuttx/pull/11798 ## Summary This patch allows user to simply select which GPIOs he wants to use and access them via /dev/gpio_a0 or similar device with standard gpio driver. By default gpio names match pin

Re: [PR] netinit: Add check mount path retry option for delayed mounts [nuttx-apps]

2024-02-27 Thread via GitHub
PetervdPerk-NXP commented on code in PR #2313: URL: https://github.com/apache/nuttx-apps/pull/2313#discussion_r1504718553 ## netutils/netinit/Kconfig: ## @@ -118,6 +118,13 @@ config NETINIT_THREAD_PRIORITY PHY polling is CPU intensive and can interfere with the

Re: [PR] audio: migrate to SPDX identifier [nuttx]

2024-02-27 Thread via GitHub
jerpelea commented on PR #11773: URL: https://github.com/apache/nuttx/pull/11773#issuecomment-1967285040 @hartmannathan 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 to the specific

Re: [PR] rv-virt: Add .init_section to linker script [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #11794: URL: https://github.com/apache/nuttx/pull/11794#discussion_r1504687804 ## boards/risc-v/qemu-rv/rv-virt/scripts/ld.script: ## @@ -78,30 +86,6 @@ SECTIONS _edata = . ; } - /* C++ support. For each global and static

Re: [PR] netinit: Add check mount path retry option for delayed mounts [nuttx-apps]

2024-02-27 Thread via GitHub
xiaoxiang781216 commented on code in PR #2313: URL: https://github.com/apache/nuttx-apps/pull/2313#discussion_r1504684945 ## netutils/netinit/Kconfig: ## @@ -118,6 +118,13 @@ config NETINIT_THREAD_PRIORITY PHY polling is CPU intensive and can interfere with the

Re: [PR] audio: migrate to SPDX identifier [nuttx]

2024-02-27 Thread via GitHub
hartmannathan commented on PR #11773: URL: https://github.com/apache/nuttx/pull/11773#issuecomment-1967224241 > @hartmannathan please ask legal. Considering the high number of involved files and licenses it is better to wait and have clarification for all projects that will soon need this

[PR] examples/hx711: add new program to test hx711 chip [nuttx-apps]

2024-02-27 Thread via GitHub
mlyszczek opened a new pull request, #2317: URL: https://github.com/apache/nuttx-apps/pull/2317 new example program to text hx711 chip -- 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

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#issuecomment-1966894501 I have not been able to work for 6 weeks after emergency eye surgery and I have only just been able to revisit this. I have made changes as per all comments and don't seem to

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504493355 ## system/settings/settings.c: ## @@ -0,0 +1,1717 @@ +/ + *

Re: [PR] audio: migrate to SPDX identifier [nuttx]

2024-02-27 Thread via GitHub
jerpelea commented on PR #11773: URL: https://github.com/apache/nuttx/pull/11773#issuecomment-1966861668 @hartmannathan please ask legal. Considering the high number of involved files and licenses it is better to wait and have clarification for all projects that will soon need this change.

Re: [PR] rv-virt: Add .init_section to linker script [nuttx]

2024-02-27 Thread via GitHub
pkarashchenko commented on code in PR #11794: URL: https://github.com/apache/nuttx/pull/11794#discussion_r1504476541 ## boards/risc-v/qemu-rv/rv-virt/scripts/ld.script: ## @@ -78,30 +86,6 @@ SECTIONS _edata = . ; } - /* C++ support. For each global and static

Re: [PR] audio: migrate to SPDX identifier [nuttx]

2024-02-27 Thread via GitHub
hartmannathan commented on PR #11773: URL: https://github.com/apache/nuttx/pull/11773#issuecomment-1966843330 > @hartmannathan Thanks for looking into it. Zephyr RTOS is setting the SBOM trend and I am trying not to lag behind. I already started the work for our project and I bet that many

[PR] [Don't submit]: add test for SMP bug [nuttx-apps]

2024-02-27 Thread via GitHub
GUIDINGLI opened a new pull request, #2316: URL: https://github.com/apache/nuttx-apps/pull/2316 ## Summary [Don't submit]: add test for SMP bug ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504403710 ## system/settings/settings.c: ## @@ -0,0 +1,1717 @@ +/ + *

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504402781 ## system/settings/settings.c: ## @@ -0,0 +1,1717 @@ +/ + *

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504393324 ## system/settings/settings.c: ## @@ -0,0 +1,1717 @@ +/ + *

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504390151 ## system/settings/settings.c: ## @@ -0,0 +1,1717 @@ +/ + *

[PR] SMP: fix crash when switch to new task which is still running [nuttx]

2024-02-27 Thread via GitHub
GUIDINGLI opened a new pull request, #11797: URL: https://github.com/apache/nuttx/pull/11797 ## Summary ``` cpu0 thread0:cpu1: sched_yield() nxsched_set_priority() nxsched_running_setpriority() nxsched_reprioritize_rtr()

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504324469 ## examples/settings/Kconfig: ## @@ -0,0 +1,61 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504323739 ## examples/settings/Kconfig: ## @@ -0,0 +1,61 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX

Re: [PR] Add Settings Utility and example app [nuttx-apps]

2024-02-27 Thread via GitHub
TimJTi commented on code in PR #2228: URL: https://github.com/apache/nuttx-apps/pull/2228#discussion_r1504321899 ## examples/settings/settings_main.c: ## @@ -0,0 +1,301 @@ +/ + *

Re: [PR] assert/panic: disable panic message to save the code size [nuttx]

2024-02-27 Thread via GitHub
acassis commented on PR #11796: URL: https://github.com/apache/nuttx/pull/11796#issuecomment-1966562661 Amazing!!! Nice finding @anchao !!! -- 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

(nuttx) branch master updated (4123615621 -> 9b1c451f2f)

2024-02-27 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 4123615621 x86_64: move PCI bus initialization from qemu-intel64 to common x86_64 and initialize PCI in

Re: [PR] assert/panic: disable panic message to save the code size [nuttx]

2024-02-27 Thread via GitHub
acassis merged PR #11796: URL: https://github.com/apache/nuttx/pull/11796 -- 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 (561378ba6b -> cdfce8a055)

2024-02-27 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 561378ba6b rv-virt: Add libcxx to configs add cdfce8a055 arch/x86_64: add spinlock support No new revisions

(nuttx) branch master updated: x86_64: move PCI bus initialization from qemu-intel64 to common x86_64 and initialize PCI in up_initialize()

2024-02-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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 4123615621 x86_64: move PCI bus initialization

Re: [PR] x86_64: move PCI bus initialization from qemu-intel64 to common x86_64 [nuttx]

2024-02-27 Thread via GitHub
acassis merged PR #11790: URL: https://github.com/apache/nuttx/pull/11790 -- 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] arch/x86_64: add spinlock support [nuttx]

2024-02-27 Thread via GitHub
acassis merged PR #11791: URL: https://github.com/apache/nuttx/pull/11791 -- 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 (b413a1f4f7 -> 561378ba6b)

2024-02-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/nuttx.git from b413a1f4f7 arm/armv8-r: fix build break if disable CONFIG_UART_PL011 add fdaacb9408 rv-virt: Add .init_section

Re: [PR] rv-virt: Add .init_section to linker script [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #11794: URL: https://github.com/apache/nuttx/pull/11794 -- 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: arm/armv8-r: fix build break if disable CONFIG_UART_PL011

2024-02-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/nuttx.git The following commit(s) were added to refs/heads/master by this push: new b413a1f4f7 arm/armv8-r: fix build break if

Re: [PR] arm/armv8-r: fix build break if disable CONFIG_UART_PL011 [nuttx]

2024-02-27 Thread via GitHub
xiaoxiang781216 merged PR #11795: URL: https://github.com/apache/nuttx/pull/11795 -- 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 (07ec18f088 -> 547342ca50)

2024-02-27 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 07ec18f088 boards: spresense: Add reset control on BLE1507 Add-on board add 547342ca50 sensors/bmi160: fix

Re: [PR] sensors/bmi160: fix compilation errors [nuttx]

2024-02-27 Thread via GitHub
jerpelea merged PR #11789: URL: https://github.com/apache/nuttx/pull/11789 -- 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 (51b3dbb78d -> 07ec18f088)

2024-02-27 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 51b3dbb78d sensors: Remove duplicated defnitions from bmi160.h add 07ec18f088 boards: spresense: Add reset

Re: [PR] boards: spresense: Add reset control on BLE1507 Add-on board [nuttx]

2024-02-27 Thread via GitHub
jerpelea merged PR #11793: URL: https://github.com/apache/nuttx/pull/11793 -- 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: sensors: Remove duplicated defnitions from bmi160.h

2024-02-27 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 51b3dbb78d sensors: Remove duplicated

Re: [PR] sensors: Remove duplicated defnitions from bmi160.h [nuttx]

2024-02-27 Thread via GitHub
jerpelea merged PR #11792: URL: https://github.com/apache/nuttx/pull/11792 -- 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] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
yf13 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1504012614 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE INTERNAL

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
yf13 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503956456 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE INTERNAL

Re: [PR] audio: migrate to SPDX identifier [nuttx]

2024-02-27 Thread via GitHub
jerpelea commented on PR #11773: URL: https://github.com/apache/nuttx/pull/11773#issuecomment-1966207722 @hartmannathan Thanks for looking into it. Zephyr RTOS is setting the SBOM trend and I am trying not to lag behind. I already started the work for our project and I bet that many other

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
yf13 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503956456 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE INTERNAL

[PR] assert/panic: disable panic message to save the code size [nuttx]

2024-02-27 Thread via GitHub
anchao opened a new pull request, #11796: URL: https://github.com/apache/nuttx/pull/11796 ## Summary assert/panic: disable panic message to save the code size Requirement of nuttx as a minimum scheduler os. Test build on Cortex-R52, fvp-armv8r-aarch32/nsh

Re: [PR] sched:rw_sem: replace mutex with spinlock [nuttx]

2024-02-27 Thread via GitHub
TaiJuWu commented on PR #11769: URL: https://github.com/apache/nuttx/pull/11769#issuecomment-1966150649 Hi @xiaoxiang781216, Do you know why some platform not config spinlock? Even in 1cpu, in multi-threading environment spinlock is also needed. How do you think this path? Is it

[PR] arm/armv8-r: fix build break if disable CONFIG_UART_PL011 [nuttx]

2024-02-27 Thread via GitHub
anchao opened a new pull request, #11795: URL: https://github.com/apache/nuttx/pull/11795 ## Summary arm/armv8-r: fix build break if disable CONFIG_UART_PL011 Common code should support the if PL011 is not enabled Signed-off-by: chao an ## Impact N/A

[PR] rv-virt: Add .init_section to linker script [nuttx]

2024-02-27 Thread via GitHub
no1wudi opened a new pull request, #11794: URL: https://github.com/apache/nuttx/pull/11794 ## Summary Provide _sinit/_einit to make it possible to enable libcxx on rv-virt platform. ## Impact rv-virt only ## Testing CI and local machine with cxxtest -- This

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
yf13 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503742922 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE INTERNAL

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
yf13 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503742922 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE INTERNAL

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
anchao commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503840343 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE

[PR] boards: spresense: Add reset control on BLE1507 Add-on board [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE opened a new pull request, #11793: URL: https://github.com/apache/nuttx/pull/11793 ## Summary Add reset pin selection on BLE1507 Add-on board. ## Impact Only for spresense board. ## Testing -- This is an automated message from the Apache Git Service.

[PR] sensors: Remove duplicated defnitions from bmi160.h [nuttx]

2024-02-27 Thread via GitHub
SPRESENSE opened a new pull request, #11792: URL: https://github.com/apache/nuttx/pull/11792 ## Summary Remove duplicated defnitions from bmi160.h. ## Impact Only for spresense board. ## Testing -- This is an automated message from the Apache Git Service. To

Re: [PR] build/cmake: fix empty BASE_DEFCONFIG string [nuttx]

2024-02-27 Thread via GitHub
xuxin930 commented on code in PR #11788: URL: https://github.com/apache/nuttx/pull/11788#discussion_r1503824923 ## CMakeLists.txt: ## @@ -355,6 +355,14 @@ if(NOT EXISTS ${CMAKE_BINARY_DIR}/.config OR NOT "${NUTTX_DEFCONFIG}" STREQUAL ${NUTTX_DEFCONFIG} CACHE

[PR] arch/x86_64: add spinlock support [nuttx]

2024-02-27 Thread via GitHub
szafonimateusz-mi opened a new pull request, #11791: URL: https://github.com/apache/nuttx/pull/11791 ## Summary - arch/x86_64: add spinlock support ## Impact ## Testing smp on qemu -- This is an automated message from the Apache Git Service. To respond to the