(nuttx) branch master updated: chore: update gitignore for .idea folder

2025-06-13 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 cd5ad0f165 chore: update gitignore for .idea fol

Re: [I] [BUG] Xtensa ostest stopped working when SMP enabled [nuttx]

2025-06-13 Thread via GitHub
fdcavalcanti commented on issue #16368: URL: https://github.com/apache/nuttx/issues/16368#issuecomment-2971309293 Hi all, this is still an issue. I've been debugging it but have found no answers so far (on branch b6f2729) One thing I noticed is enabling `CONFIG_DEBUG_SCHED_INFO` ma

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
tmedicci commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971254062 > > > Also you can include a test to verify if ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT != ESP_HAL_3RDPARTY_VERSION, if so show a warning explaining current HAL broke MCUBOOT and a proper fi

(nuttx) 02/02: arch/stm32f0l0g0/adc: add timer trigger support

2025-06-13 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 89e8c0c425839af3b3e30397bbce5c3970c40170 Author: raiden00pl AuthorDate: Fri Jun 13 12:15:19 2025 +0200 arch/stm32f0

Re: [PR] arch/stm32f0l0g0: add TIMER trigger for ADC [nuttx]

2025-06-13 Thread via GitHub
acassis merged PR #16530: URL: https://github.com/apache/nuttx/pull/16530 -- 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: commits-unsubscr...@nuttx.apac

(nuttx) branch master updated (2fa3b72b3c -> 89e8c0c425)

2025-06-13 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 2fa3b72b3c fs/smartfs: Fix a fatal bug about sector writing after seek new 64c7354853 boards/nucleo-c0{71rb|92rc}

(nuttx) 01/02: boards/nucleo-c0{71rb|92rc}: add clock definition for timers

2025-06-13 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 64c7354853243e9202da59815d6ef5120f432fcf Author: raiden00pl AuthorDate: Fri Jun 13 12:14:29 2025 +0200 boards/nucle

Re: [PR] chore: update gitignore for .idea folder [nuttx]

2025-06-13 Thread via GitHub
acassis merged PR #16521: URL: https://github.com/apache/nuttx/pull/16521 -- 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: commits-unsubscr...@nuttx.apac

Re: [I] [BUG] I2C & SPI Tool crash system with SMP enabled [nuttx]

2025-06-13 Thread via GitHub
acassis commented on issue #16501: URL: https://github.com/apache/nuttx/issues/16501#issuecomment-2970740254 @MainframeReboot the exception 0x0d means "load page fault", so I suggest you to find the root cause using GDB. Also you can try older version than 12.8 (I think MPFS I2C support was

[PR] arch/stm32: add support for ADC trigger from TRGO event [nuttx]

2025-06-13 Thread via GitHub
raiden00pl opened a new pull request, #16532: URL: https://github.com/apache/nuttx/pull/16532 ## Summary - arch/stm32{f0l0g0|f7|h5|h7}: add support for ADC trigger from TIMER TRGO event ## Impact new feature ## Testing tested on stm32c0, stm32f3 and stm32f4

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
fdcavalcanti commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971147482 > Also you can include a test to verify if ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT != ESP_HAL_3RDPARTY_VERSION, if so show a warning explaining current HAL broke MCUBOOT and a proper fi

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971182962 > > Also you can include a test to verify if ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT != ESP_HAL_3RDPARTY_VERSION, if so show a warning explaining current HAL broke MCUBOOT and a proper fix n

Re: [PR] benchmarks/osperf/osperf.c: add pipe read-write performance test [nuttx-apps]

2025-06-13 Thread via GitHub
cederom commented on PR #3092: URL: https://github.com/apache/nuttx-apps/pull/3092#issuecomment-2970417062 ACK :-) Ci restarted :-) -- 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 co

[PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
fdcavalcanti opened a new pull request, #16533: URL: https://github.com/apache/nuttx/pull/16533 ## Summary - **arch/risc-v: decouple common source for Espressif's MCUBoot port** Decouples the NuttX build from the MCUBoot common source on RISC-V Espressif devices. Allows using dif

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on code in PR #16533: URL: https://github.com/apache/nuttx/pull/16533#discussion_r2145636972 ## arch/xtensa/src/esp32/Bootloader.mk: ## @@ -44,6 +45,10 @@ ifndef MCUBOOT_URL MCUBOOT_URL = https://github.com/mcu-tools/mcuboot endif +ifndef ESP_HAL_3RD

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on code in PR #16533: URL: https://github.com/apache/nuttx/pull/16533#discussion_r2145636972 ## arch/xtensa/src/esp32/Bootloader.mk: ## @@ -44,6 +45,10 @@ ifndef MCUBOOT_URL MCUBOOT_URL = https://github.com/mcu-tools/mcuboot endif +ifndef ESP_HAL_3RD

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on code in PR #16533: URL: https://github.com/apache/nuttx/pull/16533#discussion_r2145636972 ## arch/xtensa/src/esp32/Bootloader.mk: ## @@ -44,6 +45,10 @@ ifndef MCUBOOT_URL MCUBOOT_URL = https://github.com/mcu-tools/mcuboot endif +ifndef ESP_HAL_3RD

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971096342 Also you can include a test to verify if ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT != ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT, if so show a warning explaining current HAL brokes MCUBOOT and a pro

Re: [PR] drivers/segger: Change SEGGER_RTT_LOCK into rspinlock [nuttx]

2025-06-13 Thread via GitHub
jlaitine commented on PR #16510: URL: https://github.com/apache/nuttx/pull/16510#issuecomment-2970484792 Just updated the patch on top of the @xianglyc 's patches for now. Will continue after they are merged. -- This is an automated message from the Apache Git Service. To respond to the m

(nuttx) branch master updated: fs/smartfs: Fix a fatal bug about sector writing after seek

2025-06-13 Thread jiuzhudong
This is an automated email from the ASF dual-hosted git repository. jiuzhudong 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 2fa3b72b3c fs/smartfs: Fix a fatal bug about

Re: [I] [BUG] Failing QEMU tests after #16499 [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 commented on issue #16531: URL: https://github.com/apache/nuttx/issues/16531#issuecomment-2970273680 @Donny9 is looking the problem. -- 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 t

Re: [PR] arch/stm32f0l0g0: add TIMER trigger for ADC [nuttx]

2025-06-13 Thread via GitHub
raiden00pl commented on code in PR #16530: URL: https://github.com/apache/nuttx/pull/16530#discussion_r2145013655 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -769,7 +762,316 @@ static void adc_timstart(struct stm32_dev_s *priv, bool enable) #ifdef ADC_HAVE_TIMER static int

Re: [PR] fs/smartfs: Fix a fatal bug about sector writing after seek [nuttx]

2025-06-13 Thread via GitHub
Donny9 merged PR #16518: URL: https://github.com/apache/nuttx/pull/16518 -- 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: commits-unsubscr...@nuttx.apach

Re: [I] [BUG] Failing QEMU tests after #16499 [nuttx]

2025-06-13 Thread via GitHub
acassis commented on issue #16531: URL: https://github.com/apache/nuttx/issues/16531#issuecomment-2970269676 @pussuw that is a sad news for our community! You became a very important contributor, not only for RISC-V/MPFS but also for other features. But that is part of life, sometimes we ne

Re: [PR] arch/stm32f0l0g0: add TIMER trigger for ADC [nuttx]

2025-06-13 Thread via GitHub
acassis commented on code in PR #16530: URL: https://github.com/apache/nuttx/pull/16530#discussion_r2145022805 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -769,7 +762,316 @@ static void adc_timstart(struct stm32_dev_s *priv, bool enable) #ifdef ADC_HAVE_TIMER static int ad

Re: [PR] improve libc/stream subsystem [nuttx]

2025-06-13 Thread via GitHub
Donny9 commented on code in PR #16496: URL: https://github.com/apache/nuttx/pull/16496#discussion_r2145016688 ## drivers/note/notestream_driver.c: ## @@ -131,15 +130,15 @@ int notefile_register(FAR const char *filename) #endif notefile->driver.stream = ¬efile->filestream.c

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
kywwilson11 commented on code in PR #16500: URL: https://github.com/apache/nuttx/pull/16500#discussion_r2146016433 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -1132,6 +1155,19 @@ static void adc_common_cfg(struct stm32_dev_s *priv) uint32_t clrbits = 0; uint32_t setbits

Re: [I] [BUG] nxffs test [nuttx]

2025-06-13 Thread via GitHub
github-xiaodong commented on issue #16528: URL: https://github.com/apache/nuttx/issues/16528#issuecomment-2969304853 I discovered a similar reported case in the community, and relevant code changes that were merged. This change has taken effect in Release 12.4. https://github.com/apac

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
raiden00pl commented on code in PR #16500: URL: https://github.com/apache/nuttx/pull/16500#discussion_r2144774455 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -1132,6 +1155,19 @@ static void adc_common_cfg(struct stm32_dev_s *priv) uint32_t clrbits = 0; uint32_t setbits

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
raiden00pl commented on code in PR #16500: URL: https://github.com/apache/nuttx/pull/16500#discussion_r2144760515 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -1132,6 +1155,19 @@ static void adc_common_cfg(struct stm32_dev_s *priv) uint32_t clrbits = 0; uint32_t setbits

[I] [BUG] Failing QEMU tests after #16499 [nuttx]

2025-06-13 Thread via GitHub
fdcavalcanti opened a new issue, #16531: URL: https://github.com/apache/nuttx/issues/16531 ### Description / Steps to reproduce the issue Hi folks, I've tracked commit https://github.com/apache/nuttx/commit/b8e30b54ec9c3092cb44394cdb6a4958dd6d3b42 (fs/vfs: Separate file descri

Re: [PR] benchmarks/osperf/osperf.c: add pipe read-write performance test [nuttx-apps]

2025-06-13 Thread via GitHub
cederom commented on PR #3092: URL: https://github.com/apache/nuttx-apps/pull/3092#issuecomment-2970162747 There is `f_get` and `fs_put` build error that comes from previous commit, it needs PR merge also on nuttx part :-) -- This is an automated message from the Apache Git Service. To re

Re: [PR] driver/optee: fix compile break [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 commented on PR #16526: URL: https://github.com/apache/nuttx/pull/16526#issuecomment-2970206859 ci error isn't related this patch, let's merge it to fix ci break. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

Re: [PR] driver/optee: fix compile break [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 merged PR #16526: URL: https://github.com/apache/nuttx/pull/16526 -- 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: commits-unsubscr...@nu

Re: [PR] benchmarks/osperf/osperf.c: add pipe read-write performance test [nuttx-apps]

2025-06-13 Thread via GitHub
xiaoxiang781216 commented on PR #3092: URL: https://github.com/apache/nuttx-apps/pull/3092#issuecomment-2970207915 > Thank you @michallenc :-) fix here: https://github.com/apache/nuttx/pull/16526 -- This is an automated message from the Apache Git Service. To respond to the message

Re: [I] [BUG] imx93-evk/koptee: Too many arguments to function 'file_allocate_from_inode' [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 closed issue #16523: [BUG] imx93-evk/koptee: Too many arguments to function 'file_allocate_from_inode' URL: https://github.com/apache/nuttx/issues/16523 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the

Re: [I] [BUG] Failing QEMU tests after #16499 [nuttx]

2025-06-13 Thread via GitHub
acassis commented on issue #16531: URL: https://github.com/apache/nuttx/issues/16531#issuecomment-2970218907 @pussuw please take a look -- 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 specifi

(nuttx) branch master updated: driver/optee: fix compile break

2025-06-13 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 cf1e92e5a2 driver/optee: fix compile break cf1

Re: [I] [BUG] nxffs test [nuttx]

2025-06-13 Thread via GitHub
acassis commented on issue #16528: URL: https://github.com/apache/nuttx/issues/16528#issuecomment-2970226231 @github-xiaodong thanks for confirming that the issue was fixed in mainline. Did you compare nxffs performance related to smartfs and littlefs? -- This is an automated message from

(nuttx) branch master updated (cf1e92e5a2 -> a5f43aa8e8)

2025-06-13 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 cf1e92e5a2 driver/optee: fix compile break new 4ccc3d4c96 drivers/syslog: Add RFC 5424 protocol support ne

(nuttx) 02/02: docs/syslog: Add documentation for RFC 5424 support

2025-06-13 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 a5f43aa8e864d4f449b2f93a095dcf468dd7e206 Author: Matteo Golin AuthorDate: Sun Jun 8 13:46:33 2025 -0400 docs/sysl

Re: [I] [BUG] Failing QEMU tests after #16499 [nuttx]

2025-06-13 Thread via GitHub
pussuw commented on issue #16531: URL: https://github.com/apache/nuttx/issues/16531#issuecomment-2970237708 Maybe @Donny9 can help. He refactored big chunks of that patch and did the testing afterwards. I don't have time for NuttX anymore as I will very shortly move to a different li

Re: [PR] RFC 5424 implementation for SYSLOG [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 commented on PR #16493: URL: https://github.com/apache/nuttx/pull/16493#issuecomment-2970236498 let's ignore the temp mainline ci break which is fixed by: https://github.com/apache/nuttx/pull/16526 -- This is an automated message from the Apache Git Service. To respond to

Re: [PR] arch/stm32f0l0g0: add TIMER trigger for ADC [nuttx]

2025-06-13 Thread via GitHub
acassis commented on code in PR #16530: URL: https://github.com/apache/nuttx/pull/16530#discussion_r2144994627 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -769,7 +762,316 @@ static void adc_timstart(struct stm32_dev_s *priv, bool enable) #ifdef ADC_HAVE_TIMER static int ad

(nuttx) 01/02: drivers/syslog: Add RFC 5424 protocol support

2025-06-13 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 4ccc3d4c96d3450b160989657f5c441207b70721 Author: Matteo Golin AuthorDate: Sat Jun 7 23:51:56 2025 -0400 drivers/s

Re: [PR] arch/riscv/ricv_exception.c: Dump the process name at exception in user space [nuttx]

2025-06-13 Thread via GitHub
acassis commented on PR #16529: URL: https://github.com/apache/nuttx/pull/16529#issuecomment-2970253477 There are some POSIX test errors and also this not normalized config: ``` boards/risc-v/qemu-rv/rv-virt/configs/citest/logs/ `` -- This is an automated message from the Apac

Re: [I] [BUG] nuttx-aware debugging with gdb: fail to load pynuttx `fs` module [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 closed issue #16507: [BUG] nuttx-aware debugging with gdb: fail to load pynuttx `fs` module URL: https://github.com/apache/nuttx/issues/16507 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above t

(nuttx) 01/03: nxgdb/fs: fix exception when failed to parse symbol

2025-06-13 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 00304a18ed50b9920ac2e62879d588ee43259b65 Author: xuxingliang AuthorDate: Tue Jan 14 22:26:26 2025 +0800 nxgdb/fs:

(nuttx) 03/03: nxgdb: fix style issue

2025-06-13 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 28b2e01c22385d83c0f2729a130f441cee1173f6 Author: xuxingliang AuthorDate: Wed Apr 23 19:56:44 2025 +0800 nxgdb: fi

(nuttx) 02/03: nxgdb/utils.py: Fix source gdbinit.py script error report

2025-06-13 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 341292064db20ebdc054cd9c20ddcbf430cabf88 Author: chenzhijia AuthorDate: Fri Feb 21 09:44:12 2025 +0800 nxgdb/util

(nuttx) branch master updated (5aa45e328e -> 28b2e01c22)

2025-06-13 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 5aa45e328e arch/riscv/ricv_exception.c: Dump the process name at exception in user space new 00304a18ed nxgdb/

Re: [PR] RFC 5424 implementation for SYSLOG [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 merged PR #16493: URL: https://github.com/apache/nuttx/pull/16493 -- 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: commits-unsubscr...@nu

(nuttx) branch master updated: arch/riscv/ricv_exception.c: Dump the process name at exception in user space

2025-06-13 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 5aa45e328e arch/riscv/ricv_exception.c: Dump t

Re: [PR] arch/riscv/ricv_exception.c: Dump the process name at exception in user space [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 merged PR #16529: URL: https://github.com/apache/nuttx/pull/16529 -- 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: commits-unsubscr...@nu

Re: [PR] nxgdb/fs: fix exception when failed to parse symbol [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 merged PR #16527: URL: https://github.com/apache/nuttx/pull/16527 -- 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: commits-unsubscr...@nu

Re: [PR] arch/riscv/ricv_exception.c: Dump the process name at exception in user space [nuttx]

2025-06-13 Thread via GitHub
xiaoxiang781216 commented on PR #16529: URL: https://github.com/apache/nuttx/pull/16529#issuecomment-2970260159 > There are some POSIX test errors and also this not normalized config: > > ``` > boards/risc-v/qemu-rv/rv-virt/configs/citest/logs/ > ``` yes, @Donny9 is lookin

[PR] arch/riscv/ricv_exception.c: Dump the process name at exception in user space [nuttx]

2025-06-13 Thread via GitHub
jlaitine opened a new pull request, #16529: URL: https://github.com/apache/nuttx/pull/16529 ## Summary This helps in debugging loaded elf files in CONFIG_BUILD_KERNEL. If a user space exception occurs, one would beed the process name in order to debug the correct process/elf file

[PR] arch/stm32f0l0g0: add TIMER trigger for ADC [nuttx]

2025-06-13 Thread via GitHub
raiden00pl opened a new pull request, #16530: URL: https://github.com/apache/nuttx/pull/16530 ## Summary add ADC external trigger from TIMER for stm32-m0 chips. ## Impact new feature ## Testing stm32c071 -- This is an automated message from th

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
raiden00pl commented on code in PR #16500: URL: https://github.com/apache/nuttx/pull/16500#discussion_r2144748013 ## arch/arm/src/stm32f0l0g0/hardware/stm32_adc.h: ## @@ -108,9 +113,16 @@ #define STM32_ADC1_CFGR2(STM32_ADC1_BASE + STM32_ADC_CFGR2_OFFSET) #define ST

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971352163 > > > > Also you can include a test to verify if ESP_HAL_3RDPARTY_VERSION_FOR_MCUBOOT != ESP_HAL_3RDPARTY_VERSION, if so show a warning explaining current HAL broke MCUBOOT and a proper f

Re: [PR] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
fdcavalcanti commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971377258 @acassis seems we have CI error but unrelated to this PR -- 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] Update MCUBoot build process for Espressif devices [nuttx]

2025-06-13 Thread via GitHub
acassis commented on PR #16533: URL: https://github.com/apache/nuttx/pull/16533#issuecomment-2971382477 @fdcavalcanti yes! It was reported here: https://github.com/apache/nuttx/issues/16524 and https://github.com/apache/nuttx/issues/16525 -- This is an automated message from the Apache G

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
kywwilson11 commented on PR #16500: URL: https://github.com/apache/nuttx/pull/16500#issuecomment-2971557393 Thank you for all the feedback and corrections. -- 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

Re: [PR] Add ADC support for STM32G0 (along with oversampling) [nuttx]

2025-06-13 Thread via GitHub
kywwilson11 commented on code in PR #16500: URL: https://github.com/apache/nuttx/pull/16500#discussion_r2146019106 ## arch/arm/src/stm32f0l0g0/stm32_adc.c: ## @@ -1132,6 +1155,19 @@ static void adc_common_cfg(struct stm32_dev_s *priv) uint32_t clrbits = 0; uint32_t setbits

Re: [PR] system/syslogd: Initial implementation [nuttx-apps]

2025-06-13 Thread via GitHub
linguini1 commented on code in PR #3090: URL: https://github.com/apache/nuttx-apps/pull/3090#discussion_r2146105027 ## system/syslogd/syslogd_main.c: ## @@ -0,0 +1,376 @@ +/ + * apps/system/syslogd/syslo