Re: [PR] boards/arm/tiva/tm4c123g-launchpad: add CMakeLists.txt [nuttx]

2025-04-12 Thread via GitHub
roskuttan commented on PR #16195: URL: https://github.com/apache/nuttx/pull/16195#issuecomment-2799780508 > @roskuttan the CI detected some issues in your CMake file: > > ``` > ERROR __main__.py:618: Check failed: /home/runner/work/nuttx/nuttx/nuttx/boards/arm/tiva/tm4c123g-launchp

Re: [I] [BUG] esp32-devkitc:smp fails on ostest after #16030 [nuttx]

2025-04-12 Thread via GitHub
jlaitine commented on issue #16193: URL: https://github.com/apache/nuttx/issues/16193#issuecomment-2799766857 @tmedicci see PR #16197 -- 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

[PR] Fix the SMP acquire/release pattern in sem_post [nuttx]

2025-04-12 Thread via GitHub
jlaitine opened a new pull request, #16197: URL: https://github.com/apache/nuttx/pull/16197 To correctly protect the counter value in SMP, the atomic_read needs to be inside the while loop. ## Summary This bug is the most probable cause of https://github.com/apache/nuttx/issue

Re: [PR] Enable mutex functionality in nxsem [nuttx]

2025-04-12 Thread via GitHub
jlaitine commented on code in PR #16194: URL: https://github.com/apache/nuttx/pull/16194#discussion_r2040898067 ## include/nuttx/mutex.h: ## @@ -36,10 +36,11 @@ * Pre-processor Definitions / -#defi

Re: [PR] Enable mutex functionality in nxsem [nuttx]

2025-04-12 Thread via GitHub
jlaitine commented on code in PR #16194: URL: https://github.com/apache/nuttx/pull/16194#discussion_r2040892778 ## include/semaphore.h: ## @@ -104,8 +104,16 @@ struct semholder_s struct sem_s { - volatile int32_t semcount; /* >0 -> Num counts available */ Review Commen

Re: [PR] Enable mutex functionality in nxsem [nuttx]

2025-04-12 Thread via GitHub
jlaitine commented on code in PR #16194: URL: https://github.com/apache/nuttx/pull/16194#discussion_r2040890507 ## include/nuttx/semaphore.h: ## @@ -45,23 +45,43 @@ /* semcount, flags, waitlist, hhead */ #define NXSEM_INITIALIZER(c, f) \ - {(c), (f), SEM_WAITLIST_I

Re: [PR] Enable mutex functionality in nxsem [nuttx]

2025-04-12 Thread via GitHub
jlaitine commented on code in PR #16194: URL: https://github.com/apache/nuttx/pull/16194#discussion_r2040890461 ## include/nuttx/semaphore.h: ## @@ -45,23 +45,43 @@ /* semcount, flags, waitlist, hhead */ #define NXSEM_INITIALIZER(c, f) \ - {(c), (f), SEM_WAITLIST_I

Re: [PR] Enable mutex functionality in nxsem [nuttx]

2025-04-12 Thread via GitHub
xiaoxiang781216 commented on code in PR #16194: URL: https://github.com/apache/nuttx/pull/16194#discussion_r2040887759 ## include/semaphore.h: ## @@ -104,8 +104,16 @@ struct semholder_s struct sem_s { - volatile int32_t semcount; /* >0 -> Num counts available */ -

(nuttx) branch master updated (7ff199331e -> 2a38ce37d7)

2025-04-12 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 7ff199331e Documentation: fix typo in comments new 927fe5bc2a drivers/serial/Kconfig: TTY_LAUNCH depends on SCH

Re: [PR] boards/Kconfig && drivers/serial/Kconfig Add depends on [nuttx]

2025-04-12 Thread via GitHub
xiaoxiang781216 merged PR #16181: URL: https://github.com/apache/nuttx/pull/16181 -- 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) 01/02: drivers/serial/Kconfig: TTY_LAUNCH depends on SCHED_HPWORK

2025-04-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 commit 927fe5bc2a49adc0017ef4a120d8389ac6ea5494 Author: zhangshoukui AuthorDate: Fri Mar 14 10:11:31 2025 +0800 drivers/

(nuttx) 02/02: boards/Kconfig: BOARDCTL_APP_SYMTAB Add depends on LIBC_EXECFUNCS

2025-04-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 commit 2a38ce37d7365fd368abf4737f35dcd54cd7f42a Author: zhangshoukui AuthorDate: Tue Mar 18 20:45:21 2025 +0800 boards/K

Re: [PR] toywasm: bump to v67 [nuttx-apps]

2025-04-12 Thread via GitHub
xiaoxiang781216 merged PR #3056: URL: https://github.com/apache/nuttx-apps/pull/3056 -- 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-apps) branch master updated (27846ffec -> 57365ac05)

2025-04-12 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 27846ffec libc/elf: rename modlib to libelf add 109457302 toywasm: bump to v67.0.0 add 57365ac05 toyw

(nuttx-website) branch asf-site updated: Publishing web: 405a7126bab3fbbeef1bb95fabd1561c86029fc1 docs: 7ff199331ea78d01a7157bd09d92fb249e825b43

2025-04-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 2fca52036 Publishing web: 405a712

[I] [BUG] RP2040 SMP configurations broken [nuttx]

2025-04-12 Thread via GitHub
linguini1 opened a new issue, #15760: URL: https://github.com/apache/nuttx/issues/15760 ### Description / Steps to reproduce the issue I am unable to boot into NSH using the SMP configuration on RP2040 devices. Testing was primarily done on a Raspberry Pi Pico W. Steps to repro

Re: [I] [BUG] RP2040 SMP configurations broken [nuttx]

2025-04-12 Thread via GitHub
linguini1 commented on issue #15760: URL: https://github.com/apache/nuttx/issues/15760#issuecomment-2798911933 I unfortunately do not have an RP23xx to help test -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

Re: [PR] arch/xtensa/esp32: Add support for hardware accelerated SHA [nuttx]

2025-04-12 Thread via GitHub
PruteanuVlad commented on code in PR #16016: URL: https://github.com/apache/nuttx/pull/16016#discussion_r2040694825 ## arch/xtensa/src/esp32/esp32_sha.c: ## Review Comment: I am not sure if you receive any kind of notification when I update this PR, so just a quick FYI, I

Re: [PR] boards/arm/tiva/tm4c123g-launchpad: add CMakeLists.txt [nuttx]

2025-04-12 Thread via GitHub
acassis commented on PR #16195: URL: https://github.com/apache/nuttx/pull/16195#issuecomment-2798862346 @roskuttan the CI detected some issues in your CMake file: ``` ERROR __main__.py:618: Check failed: /home/runner/work/nuttx/nuttx/nuttx/boards/arm/tiva/tm4c123g-launchpad/CMakeLi

Re: [PR] arch/xtensa: fix definition for `_int32_t` and `_uint32_t` [nuttx]

2025-04-12 Thread via GitHub
yamt commented on PR #16022: URL: https://github.com/apache/nuttx/pull/16022#issuecomment-2798780502 > > > > @yamt seems we have an issue on `toywasm`. Could you please take a look at the CI build log? > > > > > > > > > is it still failing? > > > > > > Yes. @fdcavalcant

Re: [PR] toywasm: bump to v67 [nuttx-apps]

2025-04-12 Thread via GitHub
lupyuen commented on PR #3056: URL: https://github.com/apache/nuttx-apps/pull/3056#issuecomment-2798751883 @yamt Yep it's a known problem, retrying will fix it: - https://github.com/apache/nuttx/issues/16010 -- This is an automated message from the Apache Git Service. To respond to the

Re: [PR] toywasm: bump to v67 [nuttx-apps]

2025-04-12 Thread via GitHub
yamt commented on PR #3056: URL: https://github.com/apache/nuttx-apps/pull/3056#issuecomment-2798750963 the ci failure (msys2) looks unrelated to me. -- 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

Re: [I] [BUG] RP2040 SMP configurations broken [nuttx]

2025-04-12 Thread via GitHub
shtirlic commented on issue #15760: URL: https://github.com/apache/nuttx/issues/15760#issuecomment-2798700460 Still broken for rp23xx (pico2), reverting to at least to 7774271ad613308816eb71c8f371b0a7ba866935, fixed the SMP build -- This is an automated message from the Apache Git Servic

Re: [PR] CMake Build Support for arch/arm/rp2040 & Raspberry Pi Pico [nuttx]

2025-04-12 Thread via GitHub
raiden00pl commented on PR #16196: URL: https://github.com/apache/nuttx/pull/16196#issuecomment-2798697903 you need `boards/arm/rp2040/common/CMakeLists.txt` and `boards/arm/rp2040/common/src/CMakeLists.txt`. You can look how it's done for `boards/arm/stm32/common` -- This is an automate

Re: [PR] CMake Build Support for arch/arm/rp2040 & Raspberry Pi Pico [nuttx]

2025-04-12 Thread via GitHub
roskuttan commented on PR #16196: URL: https://github.com/apache/nuttx/pull/16196#issuecomment-2798696204 > @roskuttan I see the problem now. You have to port `boards/arm/rp2040/common` to cmake. All missing definitions are from `boards/arm/rp2040/common/Kconfig` So i just have to ma