Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
Gary-Hobson commented on PR #13129: URL: https://github.com/apache/nuttx/pull/13129#issuecomment-2316852165 > > @anchao Do you mean leave_critical_section before all malloc/free? > > This has been modified, but the functionality of this method seems to have no difference Because of the ch

Re: [PR] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
yamt commented on PR #13222: URL: https://github.com/apache/nuttx/pull/13222#issuecomment-2316808622 > Can you also enable SMP for the `psram` defconfig`, please? why? how about psram_usrheap? -- This is an automated message from the Apache Git Service. To respond to the message,

Re: [PR] mmcsd: replace cmd12(stop transimission) with cmd23(set block count) [nuttx]

2024-08-28 Thread via GitHub
gneworld commented on PR #13215: URL: https://github.com/apache/nuttx/pull/13215#issuecomment-2316796986 > Please fill the Summary/Impact/Testing fields. Please include explanation why to replace CMD12 with CMD23, what is the needs or advantage of doing it. OK, I will add it in the ne

Re: [PR] mmcsd: fix cmd6 timeout error when repeat calling [nuttx]

2024-08-28 Thread via GitHub
gneworld commented on PR #13212: URL: https://github.com/apache/nuttx/pull/13212#issuecomment-2316796426 > @gneworld Please name your PRs so that title is meaningful, Add Summary that answers: both What and Why, > > i.e. Title: stm32:Fix timer race Summary The change reorders the

Re: [PR] examples/amg88xx: add example for amg88xx driver [nuttx-apps]

2024-08-28 Thread via GitHub
LuchianMihai commented on PR #2459: URL: https://github.com/apache/nuttx-apps/pull/2459#issuecomment-2316794776 > @LuchianMihai did you have time to convert the driver to video/camera interface? Case you don't, maybe we should merge it as normal driver, because is better to have a driver an

[I] [HELP] ESP32C3 sleep after software reset [nuttx]

2024-08-28 Thread via GitHub
metarutaiga opened a new issue, #13230: URL: https://github.com/apache/nuttx/issues/13230 ### Description I tested LUATOS ESP32C3 and ESP32-C3-mini I tried these 1. boardctl(BOARDIOC_RESET, 0); 2. esp_restart(); 3. esp_rom_software_reset_cpu(0); But it sleep alwa

Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13129: URL: https://github.com/apache/nuttx/pull/13129#discussion_r1735560891 ## sched/task/task_setup.c: ## @@ -155,14 +170,23 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb) for (i = 0; i < g_npidhash / 2; i++) { + if (g_pi

Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13129: URL: https://github.com/apache/nuttx/pull/13129#discussion_r1735560505 ## sched/task/task_setup.c: ## @@ -140,13 +140,28 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb) * expand space. */ + temp = g_pidhash; + + /* Callin

Re: [PR] filep Reference count [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13217: URL: https://github.com/apache/nuttx/pull/13217#discussion_r1735558946 ## include/nuttx/fs/fs.h: ## @@ -466,6 +466,7 @@ typedef struct cookie_io_functions_t struct file { int f_oflags; /* Open mode flags */ + int

Re: [PR] filep Reference count [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13217: URL: https://github.com/apache/nuttx/pull/13217#discussion_r173704 ## include/nuttx/fs/fs.h: ## @@ -466,6 +466,7 @@ typedef struct cookie_io_functions_t struct file { int f_oflags; /* Open mode flags */ + int

Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13129: URL: https://github.com/apache/nuttx/pull/13129#discussion_r1735550960 ## sched/task/task_setup.c: ## @@ -170,6 +170,16 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb) for (i = 0; i < g_npidhash / 2; i++) { + if (g_pid

Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
anchao commented on PR #13129: URL: https://github.com/apache/nuttx/pull/13129#issuecomment-2316687622 > @anchao Do you mean leave_critical_section before all malloc/free? > > This has been modified, but the functionality of this method seems to have no difference Because of the check

Re: [PR] sched: replace up_cpu_index with this_cpu [nuttx]

2024-08-28 Thread via GitHub
fxysunshine commented on code in PR #13211: URL: https://github.com/apache/nuttx/pull/13211#discussion_r1735538184 ## drivers/syslog/vsyslog.c: ## @@ -215,7 +215,7 @@ int nx_vsyslog(int priority, FAR const IPTR char *fmt, FAR va_list *ap) #endif #if defined(CONFIG_SMP) -

Re: [PR] Fix task_setup race condition [nuttx]

2024-08-28 Thread via GitHub
Gary-Hobson commented on PR #13129: URL: https://github.com/apache/nuttx/pull/13129#issuecomment-2316659725 @anchao Do you mean leave_critical_section before all malloc/free? This has been modified, but the functionality of this method seems to have no difference Because of the che

[PR] inline restore_critical_section and add parameters to restore_critical_section [nuttx]

2024-08-28 Thread via GitHub
hujun260 opened a new pull request, #13228: URL: https://github.com/apache/nuttx/pull/13228 ## Summary inline restore_critical_section and add parameters to restore_critical_section ## Impact none ## Testing ostest -- This is an automated message from the Apache

Re: [PR] Add `oldconfig` and `olddefconfig` custom targets to CMake [nuttx]

2024-08-28 Thread via GitHub
xuxin930 commented on PR #13086: URL: https://github.com/apache/nuttx/pull/13086#issuecomment-2316572449 Hi @pietroalbini @xiaoxiang781216 nice question! I think we should deal with an essential problem here. First, I think the usage of `kconfig-kweak `in the description should be t

Re: [PR] filep Reference count [nuttx]

2024-08-28 Thread via GitHub
Zhangshoukui commented on code in PR #13217: URL: https://github.com/apache/nuttx/pull/13217#discussion_r1735472149 ## include/nuttx/fs/fs.h: ## @@ -466,6 +466,7 @@ typedef struct cookie_io_functions_t struct file { int f_oflags; /* Open mode flags */ + int

Re: [PR] Pci [nuttx]

2024-08-28 Thread via GitHub
lipengfei28 commented on code in PR #13198: URL: https://github.com/apache/nuttx/pull/13198#discussion_r1735470747 ## boards/x86_64/intel64/qemu-intel64/configs/pcitest/defconfig: ## @@ -27,10 +27,6 @@ CONFIG_BOOT_RUNFROMEXTSRAM=y CONFIG_BUILTIN=y CONFIG_CONSOLE_SYSLOG=y CONF

Re: [PR] Pci [nuttx]

2024-08-28 Thread via GitHub
lipengfei28 commented on code in PR #13198: URL: https://github.com/apache/nuttx/pull/13198#discussion_r1735470874 ## boards/x86_64/intel64/qemu-intel64/configs/earlyfb/defconfig: ## @@ -58,6 +54,3 @@ CONFIG_SYSTEM_CLE=y CONFIG_SYSTEM_NSH=y CONFIG_SYSTEM_TIME64=y CONFIG_USEC_

Re: [PR] drivers/mmcsd/mmcsd_sdio.c: use dma to receive setup if dma is enabled [nuttx]

2024-08-28 Thread via GitHub
Windrow14 commented on PR #13164: URL: https://github.com/apache/nuttx/pull/13164#issuecomment-2316562367 > @Windrow14 have you tested this on stm32[f|h][7] arches? > > CONFIG_MMCSD=y CONFIG_MMCSD_SDIO=y CONFIG_MMCSD_SDIOWAIT_WRCOMPLETE=y > > for both SDMMC1 and 2? > > SD

Re: [PR] Add `oldconfig` and `olddefconfig` custom targets to CMake [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #13086: URL: https://github.com/apache/nuttx/pull/13086#discussion_r1735445517 ## cmake/menuconfig.cmake: ## @@ -74,6 +74,24 @@ add_custom_target( ${NUTTX_DEFCONFIG} WORKING_DIRECTORY ${NUTTX_DIR}) +add_custom_target( + ol

(nuttx) branch master updated (a763ed1e07 -> 1086a05e50)

2024-08-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 a763ed1e07 espressif: Fix build with RTC add 1086a05e50 libc/sysconf: add _SC_GETPW_R_SIZE_MAX No new revision

Re: [PR] libc/sysconf: add _SC_GETPW_R_SIZE_MAX [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 merged PR #13220: URL: https://github.com/apache/nuttx/pull/13220 -- 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: espressif: Fix build with RTC

2024-08-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 a763ed1e07 espressif: Fix build with RTC a763e

Re: [PR] espressif: Fix build with RTC [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 merged PR #13225: URL: https://github.com/apache/nuttx/pull/13225 -- 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] sched: replace up_cpu_index with this_cpu [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13211: URL: https://github.com/apache/nuttx/pull/13211#discussion_r1735428375 ## drivers/syslog/vsyslog.c: ## @@ -215,7 +215,7 @@ int nx_vsyslog(int priority, FAR const IPTR char *fmt, FAR va_list *ap) #endif #if defined(CONFIG_SMP) -

(nuttx-website) branch asf-site updated: Publishing web: 9b886505ecde41a8947900f645fd393c393c3beb docs: c8e56ff63a3258c507a4b8109570ce03833ea464

2024-08-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 0dfc304e4 Publishing web: 9b88650

Re: [PR] mmcsd: fix cmd6 timeout error when repeat calling [nuttx]

2024-08-28 Thread via GitHub
davids5 commented on PR #13212: URL: https://github.com/apache/nuttx/pull/13212#issuecomment-2316101853 @gneworld Please name your PRs so that title is meaningful, Add Summary that answers: both What and Why, i.e. Title: stm32:Fix timer race Summary The change reorders the ..

Re: [PR] Work2 [nuttx]

2024-08-28 Thread via GitHub
davids5 commented on PR #13214: URL: https://github.com/apache/nuttx/pull/13214#issuecomment-2316100366 @gneworld Please name your PRs so that title is meaningful, Add Summary that answers: both What and Why, i.e. Title: `stm32:Fix timer race` Summary The change reorders th

[I] [BUG] /drivers/spi/spi_slave_driver.c broken - not working in master but working in old commit [nuttx]

2024-08-28 Thread via GitHub
FelipeMdeO opened a new issue, #13227: URL: https://github.com/apache/nuttx/issues/13227 ### Description / Steps to reproduce the issue Hello all. I cannot use spi slave in esp32 c6 dev kit. I follower instructions in PR https://github.com/apache/nuttx/pull/3787 and using t

[PR] boards/sim: Defconfigs for nand and mnemofs [nuttx]

2024-08-28 Thread via GitHub
resyfer opened a new pull request, #13226: URL: https://github.com/apache/nuttx/pull/13226 ## Summary Adds nand and mnemofs sim configs. ## Impact Testers and users have default configuration files to use nand device simulators out of the box. ## Testing Manual testing

[PR] espressif: Fix build with RTC [nuttx]

2024-08-28 Thread via GitHub
tmedicci opened a new pull request, #13225: URL: https://github.com/apache/nuttx/pull/13225 ## Summary This commit ensures that RTC data is properly allocated in the RTC segment in the linker. This fixes the reported problem about using the legacy bootloader and RTC. ## Impact

(nuttx) branch master updated: CMake: fix CMake compile errors during the protected build mode

2024-08-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 c8e56ff63a CMake: fix CMake compile errors dur

Re: [PR] CMake: fix CMake compile errors during the protected build mode [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 merged PR #13171: URL: https://github.com/apache/nuttx/pull/13171 -- 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

[PR] Update System utility "settings.c" to correct compiler error [nuttx-apps]

2024-08-28 Thread via GitHub
TimJTi opened a new pull request, #2540: URL: https://github.com/apache/nuttx-apps/pull/2540 Silly error in settings.c causing compiler error when settings utility caching is enabled -- This is an automated message from the Apache Git Service. To respond to the message, pl

Re: [PR] usbdev: extend the usb req len to unit32_t [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #13216: URL: https://github.com/apache/nuttx/pull/13216#discussion_r1735029658 ## include/nuttx/usb/usbdev.h: ## @@ -253,8 +253,8 @@ struct usbdev_req_s { FAR uint8_t *buf; /* Call: Buffer used for data; Return: Unchanged */ uint8_t

Re: [PR] usbdev: extend the usb req len to unit32_t [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #13216: URL: https://github.com/apache/nuttx/pull/13216#discussion_r1735029658 ## include/nuttx/usb/usbdev.h: ## @@ -253,8 +253,8 @@ struct usbdev_req_s { FAR uint8_t *buf; /* Call: Buffer used for data; Return: Unchanged */ uint8_t

(nuttx) branch master updated: nuttx/drivers:Modify errcode returned by relay_ioctl

2024-08-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 f526b91165 nuttx/drivers:Modify errcode return

Re: [PR] nuttx/drivers:Modify errcode returned by relay_ioctl [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 merged PR #13219: URL: https://github.com/apache/nuttx/pull/13219 -- 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: Add spi slave dev to esp32 xtensa

2024-08-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 37e1f5db47 Add spi slave dev to esp32 xtensa 3

Re: [PR] Add spi slave dev to esp32 xtensa [nuttx]

2024-08-28 Thread via GitHub
xiaoxiang781216 merged PR #13223: URL: https://github.com/apache/nuttx/pull/13223 -- 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] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
tmedicci commented on PR #13222: URL: https://github.com/apache/nuttx/pull/13222#issuecomment-2315722427 Hi @yamt If I set `CONFIG_DEBUG_ASSERTIONS` and `CONFIG_DEBUG_FEATURES` it fails to boot. I guess it's somehow debug-asserting. Can you take a look at it? The `defconfig` I

Re: [I] [BUG] ESP32C6 SPI Read Issue [nuttx]

2024-08-28 Thread via GitHub
acassis commented on issue #13067: URL: https://github.com/apache/nuttx/issues/13067#issuecomment-2315664284 Actually the message was to Filipe Cavalcanti that doesn't have the board: @fdcavalcanti (since you don't have the board) I think you can use the spi tool to so this test. Just do

[I] [HELP] TCP/IP stuck on Send(), crash on any new connection NuttX 9.1 STM32H7 [nuttx]

2024-08-28 Thread via GitHub
mraja-brooks opened a new issue, #13224: URL: https://github.com/apache/nuttx/issues/13224 ### Description Hello Community, We have had very interesting issue that we have been struggling for over a year now as it is intermittent but being in Semiconductor industry, it is not

Re: [PR] examples/amg88xx: add example for amg88xx driver [nuttx-apps]

2024-08-28 Thread via GitHub
acassis commented on PR #2459: URL: https://github.com/apache/nuttx-apps/pull/2459#issuecomment-2315544397 @LuchianMihai did you have time to convert the driver to video/camera interface? Case you don't, maybe we should merge it as normal driver, because is better to have a driver anyway be

Re: [PR] Alsa-lib: Add vela alsa lib interface [nuttx-apps]

2024-08-28 Thread via GitHub
acassis commented on code in PR #2483: URL: https://github.com/apache/nuttx-apps/pull/2483#discussion_r1734812388 ## audioutils/alsa-lib/alsa_error.c: ## @@ -0,0 +1,39 @@ +/ + * apps/audioutils/alsa-lib/

Re: [PR] pass tlpi example:check_password [nuttx]

2024-08-28 Thread via GitHub
acassis commented on code in PR #13221: URL: https://github.com/apache/nuttx/pull/13221#discussion_r1734781136 ## libs/libc/pwd/lib_getspnamr.c: ## @@ -0,0 +1,183 @@ +/ + * libs/libc/pwd/lib_getspnamr.c

Re: [PR] Merge the newlibc string into NuttX. [nuttx]

2024-08-28 Thread via GitHub
jerpelea commented on code in PR #13180: URL: https://github.com/apache/nuttx/pull/13180#discussion_r1734746869 ## libs/libc/string/lib_memrchr.c: ## @@ -26,6 +26,34 @@ #include +/ Review Comment:

[PR] Add spi slave dev to esp32 xtensa [nuttx]

2024-08-28 Thread via GitHub
FelipeMdeO opened a new pull request, #13223: URL: https://github.com/apache/nuttx/pull/13223 ## Summary Add spi slave dev to esp32 xtensa ## Impact Add Feature ## Testing Building -- This is an automated message from the Apache Git Service. To respond to the mes

Re: [PR] Merge the newlibc string into NuttX. [nuttx]

2024-08-28 Thread via GitHub
jerpelea commented on code in PR #13180: URL: https://github.com/apache/nuttx/pull/13180#discussion_r1734746869 ## libs/libc/string/lib_memrchr.c: ## @@ -26,6 +26,34 @@ #include +/ Review Comment:

Re: [PR] Merge the newlibc string into NuttX. [nuttx]

2024-08-28 Thread via GitHub
jerpelea commented on PR #13180: URL: https://github.com/apache/nuttx/pull/13180#issuecomment-2315381887 If there is no license in the file they inherit the license from LICENSE file. I would advise to handle with care files that go into the core NuttX since they may cause legal issues.

Re: [PR] Merge the newlibc string into NuttX. [nuttx]

2024-08-28 Thread via GitHub
raiden00pl commented on PR #13180: URL: https://github.com/apache/nuttx/pull/13180#issuecomment-2315334391 if this code has a different licence than NuttX then the build of these files must be guarded by `CONFIG_ALLOW_XXX_COMPONENTS`. Adding copyrights to the LICENSE file is not sufficient.

Re: [I] [BUG] ESP32C6 SPI Read Issue [nuttx]

2024-08-28 Thread via GitHub
FelipeMdeO commented on issue #13067: URL: https://github.com/apache/nuttx/issues/13067#issuecomment-2315329446 Thank you for you suggestion @acassis, very nice. I did changes in spi_transfer.c to use SPI_SEND instead SPI_EXCHANGE in the spi tool. Transfer is ok, so I don't know w

Re: [PR] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
yamt commented on code in PR #13222: URL: https://github.com/apache/nuttx/pull/13222#discussion_r1734674038 ## arch/xtensa/src/esp32/esp32_spiram.c: ## @@ -215,13 +217,14 @@ unsigned int IRAM_ATTR cache_sram_mmu_set(int cpu_no, int pid, #ifdef CONFIG_SMP spi_enable_cache(1)

Re: [PR] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
tmedicci commented on PR #13222: URL: https://github.com/apache/nuttx/pull/13222#issuecomment-2315315509 Thanks for submitting it, @yamt ! I will test it on our internal CI. Please don't merge it yet. -- This is an automated message from the Apache Git Service. To respond to the mes

Re: [PR] usbdev: extend the usb req len to unit32_t [nuttx]

2024-08-28 Thread via GitHub
acassis commented on PR #13216: URL: https://github.com/apache/nuttx/pull/13216#issuecomment-2315314638 @yangsong8-ai please fix these issues: ``` usbdev/cdcecm.c: In function 'cdcecm_ep0incomplete': Error: usbdev/cdcecm.c:832:12: error: format '%hu' expects argument of type 'int',

Re: [PR] drivers/mmcsd/mmcsd_sdio.c: use dma to receive setup if dma is enabled [nuttx]

2024-08-28 Thread via GitHub
davids5 commented on PR #13164: URL: https://github.com/apache/nuttx/pull/13164#issuecomment-2315309301 @Windrow14 have you tested this on stm32[f|h][7] arches? CONFIG_MMCSD=y CONFIG_MMCSD_SDIO=y CONFIG_MMCSD_SDIOWAIT_WRCOMPLETE=y for both SDMMC1 and 2? SDMMC1 has m

Re: [PR] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
acassis commented on code in PR #13222: URL: https://github.com/apache/nuttx/pull/13222#discussion_r1734664765 ## arch/xtensa/src/esp32/esp32_spiram.c: ## @@ -215,13 +217,14 @@ unsigned int IRAM_ATTR cache_sram_mmu_set(int cpu_no, int pid, #ifdef CONFIG_SMP spi_enable_cache

Re: [PR] Pci [nuttx]

2024-08-28 Thread via GitHub
raiden00pl commented on code in PR #13198: URL: https://github.com/apache/nuttx/pull/13198#discussion_r1734641853 ## boards/x86_64/intel64/qemu-intel64/configs/pcitest/defconfig: ## @@ -27,10 +27,6 @@ CONFIG_BOOT_RUNFROMEXTSRAM=y CONFIG_BUILTIN=y CONFIG_CONSOLE_SYSLOG=y CONFI

Re: [PR] Pci [nuttx]

2024-08-28 Thread via GitHub
raiden00pl commented on code in PR #13198: URL: https://github.com/apache/nuttx/pull/13198#discussion_r1734640912 ## boards/x86_64/intel64/qemu-intel64/configs/earlyfb/defconfig: ## @@ -58,6 +54,3 @@ CONFIG_SYSTEM_CLE=y CONFIG_SYSTEM_NSH=y CONFIG_SYSTEM_TIME64=y CONFIG_USEC_P

Re: [PR] libc/memmem:porting open source memmem to Nuttx. [nuttx]

2024-08-28 Thread via GitHub
raiden00pl commented on PR #13182: URL: https://github.com/apache/nuttx/pull/13182#issuecomment-2315257128 > Has been replaced by MIT license. Then building of this component must be guarded by `CONFIG_ALLOW_MIT_COMPONENTS` option -- This is an automated message from the Apache Git

[PR] esp32: fix a crash with PSRAM + SMP [nuttx]

2024-08-28 Thread via GitHub
yamt opened a new pull request, #13222: URL: https://github.com/apache/nuttx/pull/13222 ## Summary this function is called via esp_spiram_init_cache early in the boot. ## Impact ## Testing esp32-devkitc:psram + smp enabled -- This is an automated message from the Ap

(nuttx) branch master updated (263f8955da -> a0a85e5c10)

2024-08-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 263f8955da fs/procfs: Supports any number of thread displays add a0a85e5c10 arch/arm64: Move ELF_64BIT sele

Re: [PR] arch/arm64: Move ELF_64BIT selection to arch/Kconfig [nuttx]

2024-08-28 Thread via GitHub
pkarashchenko merged PR #13218: URL: https://github.com/apache/nuttx/pull/13218 -- 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...@nutt

Re: [PR] libc/memmem:porting open source memmem to Nuttx. [nuttx]

2024-08-28 Thread via GitHub
yangguangcai01 commented on PR #13182: URL: https://github.com/apache/nuttx/pull/13182#issuecomment-2315012176 > > @yangguangcai01 let's add lib_memem.c to https://github.com/apache/nuttx/blob/master/LICENSE#L6335 since it come from https://github.com/taleinat/byteshift_strstr. > > i

Re: [PR] filep Reference count [nuttx]

2024-08-28 Thread via GitHub
anchao commented on code in PR #13217: URL: https://github.com/apache/nuttx/pull/13217#discussion_r1734447906 ## include/nuttx/fs/fs.h: ## @@ -466,6 +466,7 @@ typedef struct cookie_io_functions_t struct file { int f_oflags; /* Open mode flags */ + int

[PR] libs/libc/pwd: add new member to passwd struct [nuttx]

2024-08-28 Thread via GitHub
Cczj opened a new pull request, #13221: URL: https://github.com/apache/nuttx/pull/13221 VELAPLATFO-28788 Add pw_passwd member to pass tlpi example: https://man7.org/tlpi/code/online/dist/users_groups/check_password.c.html Change-Id: I7e114455b8dff7537cdb19ecf4a3d6a5cba67c

[PR] libc/sysconf: add _SC_GETPW_R_SIZE_MAX [nuttx]

2024-08-28 Thread via GitHub
Cczj opened a new pull request, #13220: URL: https://github.com/apache/nuttx/pull/13220 pass tlpi example: https://man7.org/tlpi/code/online/dist/users_groups/t_getpwnam_r.c.html ## Summary ## Impact ## Testing -- This is an automated message from the Apac

[PR] nuttx/drivers:Modify errcode returned by relay_ioctl [nuttx]

2024-08-28 Thread via GitHub
Cczj opened a new pull request, #13219: URL: https://github.com/apache/nuttx/pull/13219 Fixed system function call failure due to return errcode error ## Summary ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to

[PR] arch/arm64: Move ELF64_BIT selection to arch/Kconfig [nuttx]

2024-08-28 Thread via GitHub
pussuw opened a new pull request, #13218: URL: https://github.com/apache/nuttx/pull/13218 ## Summary Unify the elf file format for the whole arm64 architecture ## Impact Remove copy&paste ## Testing CI pass -- This is an automated message from the Apache Git Serv

[PR] filep Reference count [nuttx]

2024-08-28 Thread via GitHub
Zhangshoukui opened a new pull request, #13217: URL: https://github.com/apache/nuttx/pull/13217 ## Summary Increase the reference count of filep,fs_getfilep adds +1 to the reference count. After the call is complete, run the fs_putfilep command to release the reference count.When the ref

Re: [PR] Pci [nuttx]

2024-08-28 Thread via GitHub
lipengfei28 commented on code in PR #13198: URL: https://github.com/apache/nuttx/pull/13198#discussion_r1734184974 ## drivers/pci/pci_drivers.c: ## @@ -0,0 +1,68 @@ +/ + * drivers/pci/pci_drivers.c + * +

[PR] mmcsd: replace cmd12(stop transimission) with cmd23(set block count) [nuttx]

2024-08-28 Thread via GitHub
gneworld opened a new pull request, #13215: URL: https://github.com/apache/nuttx/pull/13215 ## Summary ## Impact ## Testing -- 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 t

Re: [PR] Work2 [nuttx]

2024-08-28 Thread via GitHub
gneworld closed pull request #13214: Work2 URL: https://github.com/apache/nuttx/pull/13214 -- 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-unsub

[PR] Work2 [nuttx]

2024-08-28 Thread via GitHub
gneworld opened a new pull request, #13214: URL: https://github.com/apache/nuttx/pull/13214 ## Summary ## Impact ## Testing -- 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 t