[GitHub] [nuttx] SPRESENSE opened a new pull request, #10737: drivers/modem/alt1250: Fix bug that modem version could not be taken

2023-09-21 Thread via GitHub
SPRESENSE opened a new pull request, #10737: URL: https://github.com/apache/nuttx/pull/10737 ## Summary Fix bug that modem version could not be taken. ## Impact Only alt1250 driver ## Testing Test with spresense LTE board. -- This is an automated message from the

[GitHub] [nuttx] SPRESENSE opened a new pull request, #10738: drivers/modem/alt1250: Fix bug that errno was not converted correctly

2023-09-21 Thread via GitHub
SPRESENSE opened a new pull request, #10738: URL: https://github.com/apache/nuttx/pull/10738 ## Summary Fix bug that errno was not converted correctly. ## Impact Only alt1250 driver. ## Testing test with Spresense LTE board. -- This is an automated message from t

[GitHub] [nuttx] extinguish opened a new pull request, #10739: add wchar api implementation

2023-09-21 Thread via GitHub
extinguish opened a new pull request, #10739: URL: https://github.com/apache/nuttx/pull/10739 ## Summary add wchar api: fputws, putwc, putwchar, fputwc, wcswidth, wcwidth, wcswcs, wcstok, wcsstr, wcsspn, wcspbrk implementation. ## Impact ## Testing -- This is an a

[GitHub] [nuttx] yamt commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
yamt commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332610700 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wcwidth.c + *

[GitHub] [nuttx] zhuangton commented on pull request #10705: sched/clock Add special handling for TCB null pointer cases

2023-09-21 Thread via GitHub
zhuangton commented on PR #10705: URL: https://github.com/apache/nuttx/pull/10705#issuecomment-1729036748 > @zhuangton I liked the way you tested it. Could you please add a small tutorial at https://nuttx.apache.org/docs/12.2.1/guides/index.html explaining how to do it? Please add the small

[GitHub] [nuttx] zhuangton closed pull request #10705: sched/clock Add special handling for TCB null pointer cases

2023-09-21 Thread via GitHub
zhuangton closed pull request #10705: sched/clock Add special handling for TCB null pointer cases URL: https://github.com/apache/nuttx/pull/10705 -- 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

[GitHub] [nuttx] raiden00pl opened a new pull request, #10740: sensors: add suffix _uorb to all sensors that use the new sensor framework

2023-09-21 Thread via GitHub
raiden00pl opened a new pull request, #10740: URL: https://github.com/apache/nuttx/pull/10740 ## Summary - sensors: add suffix _uorb to all sensors that use the new sensor framework This'll make it easier to identify sensors supporting the new sensor approach I think `_uorb` suff

[GitHub] [nuttx] pkarashchenko commented on pull request #10715: bcm_driver: revert packed attribute for scan structure

2023-09-21 Thread via GitHub
pkarashchenko commented on PR #10715: URL: https://github.com/apache/nuttx/pull/10715#issuecomment-1729057268 Shouldn't this be handled by explicit struct padding or insertion of `reserved` byte members? I mean that packing option may change depending on arch and compiler, so this case is m

[GitHub] [nuttx] pkarashchenko commented on pull request #10715: bcm_driver: revert packed attribute for scan structure

2023-09-21 Thread via GitHub
pkarashchenko commented on PR #10715: URL: https://github.com/apache/nuttx/pull/10715#issuecomment-1729060600 Ideally the packed and non-packed structures should be the same, so we do not rely on compiler settings. There is also a flexibility in usage of explicit pointer cast from byte arra

[GitHub] [nuttx] extinguish commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
extinguish commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332648457 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wcwidth

[GitHub] [nuttx] raiden00pl opened a new pull request, #10741: arch/nrf{52|53|91}: fixes for serial driver

2023-09-21 Thread via GitHub
raiden00pl opened a new pull request, #10741: URL: https://github.com/apache/nuttx/pull/10741 ## Summary - arch/nrf{52|53|91}/serial: fix warning if HAVE_UART_CONSOLE not defined warning: control reaches end of non-void function [-Wreturn-type] - arch/nrf{52|53|91}/serial: fix

[GitHub] [nuttx] raiden00pl opened a new pull request, #10742: arch/arm: fix undefined reference to arm_serialinit when RTT console used

2023-09-21 Thread via GitHub
raiden00pl opened a new pull request, #10742: URL: https://github.com/apache/nuttx/pull/10742 ## Summary - arch/arm: fix undefined reference to arm_serialinit when RTT console used ## Impact ## Testing NSH over RTT on thingy91 -- This is an automated message fro

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332725042 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wc

[GitHub] [nuttx] gneworld opened a new pull request, #10744: procfs: fix a typo

2023-09-21 Thread via GitHub
gneworld opened a new pull request, #10744: URL: https://github.com/apache/nuttx/pull/10744 (no comment) -- 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-m

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332725042 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wc

[GitHub] [nuttx] yamt commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
yamt commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332733723 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wcwidth.c + *

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332770849 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wc

[GitHub] [nuttx] DannyPlusPlus opened a new pull request, #10745: Regulator:fix some issues about rpmsg regualtor

2023-09-21 Thread via GitHub
DannyPlusPlus opened a new pull request, #10745: URL: https://github.com/apache/nuttx/pull/10745 ## Summary 1.fix regulator_register check rpmsg regulator which leads to recursion. 2.client get the regualtor which is enabled by server, will disable the regualtor. 3.regulator_rpmsg_s

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332770849 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wc

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10737: drivers/modem/alt1250: Fix bug that modem version could not be taken

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10737: URL: https://github.com/apache/nuttx/pull/10737 -- 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 (9267dbc7c2 -> 125f4a2ad0)

2023-09-21 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 9267dbc7c2 bcm_driver: revert packed attribute for scan structure add 125f4a2ad0 drivers/modem/alt1250: Fix bug

[GitHub] [nuttx] anchao commented on pull request #10743: vela: enable O_CLOEXEC explicit

2023-09-21 Thread via GitHub
anchao commented on PR #10743: URL: https://github.com/apache/nuttx/pull/10743#issuecomment-1729228644 @gneworld please remove `vela` from commit message and description -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

[GitHub] [nuttx] CV-Bowen commented on pull request #10706: fs_epoll: several epoll problems fix

2023-09-21 Thread via GitHub
CV-Bowen commented on PR #10706: URL: https://github.com/apache/nuttx/pull/10706#issuecomment-1729230844 @thebolt Yes, I miss the revent check in poll default callback, I will update. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [nuttx] gneworld commented on pull request #10743: enable O_CLOEXEC explicit

2023-09-21 Thread via GitHub
gneworld commented on PR #10743: URL: https://github.com/apache/nuttx/pull/10743#issuecomment-1729241505 @anchao Done -- 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.

[GitHub] [nuttx] CV-Bowen commented on a diff in pull request #10706: fs_epoll: several epoll problems fix

2023-09-21 Thread via GitHub
CV-Bowen commented on code in PR #10706: URL: https://github.com/apache/nuttx/pull/10706#discussion_r1332806611 ## fs/vfs/fs_epoll.c: ## @@ -325,10 +331,47 @@ static int epoll_teardown(FAR epoll_head_t *eph, FAR struct epoll_event *evs, } } + nxsem_reset(&eph->

[GitHub] [nuttx-apps] TaiJuWu commented on pull request #2076: feature: implement simple spinlock test

2023-09-21 Thread via GitHub
TaiJuWu commented on PR #2076: URL: https://github.com/apache/nuttx-apps/pull/2076#issuecomment-1729260020 > please fix: > > ``` > > Configuration/Tool: esp32s3-devkit/ksta_softap >

[GitHub] [nuttx] anchao commented on pull request #10681: pthread_once: use rmutex replace sched_[un]lock

2023-09-21 Thread via GitHub
anchao commented on PR #10681: URL: https://github.com/apache/nuttx/pull/10681#issuecomment-1729278459 For programs with the dependencies logic in pthread_once callback , using global locks may cause deadlock: ``` task A pthread_once() | |-> nxrmutex_lock(&g_lock); ->

[GitHub] [nuttx] DannyPlusPlus opened a new pull request, #10746: clk:fix some issues when use rpmsg clk

2023-09-21 Thread via GitHub
DannyPlusPlus opened a new pull request, #10746: URL: https://github.com/apache/nuttx/pull/10746 ## Summary 1.check the rpmsg name when clk_register. 2.clk_get rpmsg clk print error: clk/clk.c:1231:3: runtime error: null pointer passed as argument 2, which is declared to never be nu

[GitHub] [nuttx] simbit18 opened a new pull request, #10747: Fix nuttx coding style

2023-09-21 Thread via GitHub
simbit18 opened a new pull request, #10747: URL: https://github.com/apache/nuttx/pull/10747 ## Summary Remove TABs Remove spaces Fix indentation ## Impact none ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please lo

[GitHub] [nuttx] pkarashchenko merged pull request #10738: drivers/modem/alt1250: Fix bug that errno was not converted correctly

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

[nuttx] branch master updated: drivers/modem/alt1250: Fix bug that errno was not converted correctly

2023-09-21 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko 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 a3d17a18a7 drivers/modem/alt1250: Fix bug

[GitHub] [nuttx] TaiJuWu opened a new pull request, #10748: Fix app #2076

2023-09-21 Thread via GitHub
TaiJuWu opened a new pull request, #10748: URL: https://github.com/apache/nuttx/pull/10748 ## Summary spinlock is not used by esp32s3-devkit/ksta_softap and error happened in link time. So I disable this setting. ## Impact esp32s3-devkit/ksta_softap ## Testing local tes

[GitHub] [nuttx-apps] TaiJuWu commented on pull request #2076: feature: implement simple spinlock test

2023-09-21 Thread via GitHub
TaiJuWu commented on PR #2076: URL: https://github.com/apache/nuttx-apps/pull/2076#issuecomment-1729356274 > please fix: > > ``` > > Configuration/Tool: esp32s3-devkit/ksta_softap >

[GitHub] [nuttx] pkarashchenko merged pull request #10744: procfs: fix a typo

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

[nuttx] branch master updated: procfs: fix a typo

2023-09-21 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko 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 40a2adf720 procfs: fix a typo 40a2adf720 i

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10740: sensors: add suffix _uorb to all sensors that use the new sensor framework

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10740: URL: https://github.com/apache/nuttx/pull/10740 -- 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: sensors: add suffix _uorb to all sensors that use the new sensor framework

2023-09-21 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 0b00a02f81 sensors: add suffix _uorb to all se

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10742: arch/arm: fix undefined reference to arm_serialinit when RTT console used

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10742: URL: https://github.com/apache/nuttx/pull/10742 -- 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/arm: fix undefined reference to arm_serialinit when RTT console used

2023-09-21 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 3e79d21100 arch/arm: fix undefined reference t

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10741: arch/nrf{52|53|91}: fixes for serial driver

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10741: URL: https://github.com/apache/nuttx/pull/10741 -- 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 (3e79d21100 -> dafa4e4413)

2023-09-21 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 3e79d21100 arch/arm: fix undefined reference to arm_serialinit when RTT console used new f0155b9099 arch/nrf{5

[nuttx] 02/02: arch/nrf{52|53|91}/serial: fix serial registration when ther is no console on serial

2023-09-21 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 dafa4e4413b4bc336171b5f2c6cab642ce9040f6 Author: raiden00pl AuthorDate: Wed Sep 20 19:33:13 2023 +0200 arch/nrf{5

[nuttx] 01/02: arch/nrf{52|53|91}/serial: fix warning if HAVE_UART_CONSOLE not defined

2023-09-21 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 f0155b90991f43ffe8daa2dce7ba54bc12315cb7 Author: raiden00pl AuthorDate: Wed Sep 20 19:16:48 2023 +0200 arch/nrf{5

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10739: URL: https://github.com/apache/nuttx/pull/10739#discussion_r1332770849 ## libs/libc/wchar/lib_wcwidth.c: ## @@ -0,0 +1,253 @@ +/ + * libs/libc/wchar/lib_wc

[GitHub] [nuttx] raiden00pl opened a new pull request, #10749: debug: add support for IPC (interprocessor communication) debug messages

2023-09-21 Thread via GitHub
raiden00pl opened a new pull request, #10749: URL: https://github.com/apache/nuttx/pull/10749 ## Summary debug: add support for IPC (interprocessor communication) debug messages I'm not sure if IPC is a good name since this name is used for various things (inter-process communicati

[GitHub] [nuttx] raiden00pl opened a new pull request, #10750: stm32h7: access CM4 core NSH over uart rpmsg

2023-09-21 Thread via GitHub
raiden00pl opened a new pull request, #10750: URL: https://github.com/apache/nuttx/pull/10750 ## Summary - serial: add an option that selects uart rpmsg as console - arch/stm32h7/dualcore: don't use stm32_hsem interface for cores synchronisation stm32_hsem functions can use

[GitHub] [nuttx] hujun260 opened a new pull request, #10752: pthread_once: g_lock may lead deadlock

2023-09-21 Thread via GitHub
hujun260 opened a new pull request, #10752: URL: https://github.com/apache/nuttx/pull/10752 ## Summary pthread_once: g_lock may lead deadlock ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [nuttx] acassis commented on pull request #10750: stm32h7: access CM4 core NSH over uart rpmsg

2023-09-21 Thread via GitHub
acassis commented on PR #10750: URL: https://github.com/apache/nuttx/pull/10750#issuecomment-1729642430 @raiden00pl please include some basic Documentation/ about it to avoid becoming about "hidden feature" -- This is an automated message from the Apache Git Service. To respond to the mes

[GitHub] [nuttx] acassis commented on a diff in pull request #10750: stm32h7: access CM4 core NSH over uart rpmsg

2023-09-21 Thread via GitHub
acassis commented on code in PR #10750: URL: https://github.com/apache/nuttx/pull/10750#discussion_r1333107029 ## drivers/serial/Kconfig: ## @@ -81,6 +81,11 @@ config RPMSG_UART select SERIAL_REMOVABLE select SERIAL_IFLOWCONTROL +config RPMSG_UART_CONSOLE +

[GitHub] [nuttx] acassis merged pull request #10747: Fix nuttx coding style

2023-09-21 Thread via GitHub
acassis merged PR #10747: URL: https://github.com/apache/nuttx/pull/10747 -- 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 (dafa4e4413 -> 34bb0b6544)

2023-09-21 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 dafa4e4413 arch/nrf{52|53|91}/serial: fix serial registration when ther is no console on serial add 34bb0b6544 F

[GitHub] [nuttx] acassis commented on pull request #10735: arch/sim: add sim uart_ram support

2023-09-21 Thread via GitHub
acassis commented on PR #10735: URL: https://github.com/apache/nuttx/pull/10735#issuecomment-1729654264 @Gary-Hobson could you please include some Documentation/ about this feature? Also please include some rational about when using it instead of using SYSLOG to RAM for example. -- This

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10752: pthread_once: g_lock may lead deadlock

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10752: URL: https://github.com/apache/nuttx/pull/10752#discussion_r1333113448 ## include/pthread.h: ## @@ -839,7 +844,12 @@ typedef FAR struct pthread_spinlock_s pthread_spinlock_t; #endif /* CONFIG_PTHREAD_SPINLOCKS */ #ifndef __PTHR

[GitHub] [nuttx] daniel-p-carvalho opened a new pull request, #10753: Fix I2C1 pinout.

2023-09-21 Thread via GitHub
daniel-p-carvalho opened a new pull request, #10753: URL: https://github.com/apache/nuttx/pull/10753 ## Summary Fixes nucleo-l432kc board I2C1 pinout to comply with UM1956 section '6.10 Solder bridges'. By default the PA_5 (A4) and PA_6 (A5) pins can only be used as Input floating.

[GitHub] [nuttx] acassis commented on a diff in pull request #10735: arch/sim: add sim uart_ram support

2023-09-21 Thread via GitHub
acassis commented on code in PR #10735: URL: https://github.com/apache/nuttx/pull/10735#discussion_r1333118131 ## arch/sim/Kconfig: ## @@ -625,6 +625,54 @@ config SIM_UART3_NAME A UART port must also exist on the host system with the exact same na

[GitHub] [nuttx] acassis commented on a diff in pull request #10735: arch/sim: add sim uart_ram support

2023-09-21 Thread via GitHub
acassis commented on code in PR #10735: URL: https://github.com/apache/nuttx/pull/10735#discussion_r1333138193 ## arch/sim/src/sim/sim_uart.c: ## @@ -676,6 +693,30 @@ static bool tty_txempty(struct uart_dev_s *dev) void sim_uartinit(void) { +#ifdef CONFIG_SIM_RAM_UART0 +# i

[GitHub] [nuttx] acassis merged pull request #10748: disable esp32s3-devkit/ksta_softap spinlock config

2023-09-21 Thread via GitHub
acassis merged PR #10748: URL: https://github.com/apache/nuttx/pull/10748 -- 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: fix: disable esp32s3-devkit/ksta_softap spinlock

2023-09-21 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 707dd12090 fix: disable esp32s3-devkit/ksta_soft

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10732: mmcsd: support dump cid and csd with mmc-utils

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10732: URL: https://github.com/apache/nuttx/pull/10732 -- 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 (707dd12090 -> db2f204cc4)

2023-09-21 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 707dd12090 fix: disable esp32s3-devkit/ksta_softap spinlock add db2f204cc4 mmcsd: support dump cid and csd with

[GitHub] [nuttx-apps] daniel-p-carvalho opened a new pull request, #2082: Fixes compiler warnings while printing uint32_t and int32_t values.

2023-09-21 Thread via GitHub
daniel-p-carvalho opened a new pull request, #2082: URL: https://github.com/apache/nuttx-apps/pull/2082 ## Summary Fixes compiler warnings while printing uint32_t and int32_t values. ## Impact None. ## Testing Not tested. I don't have a board with INA226. -- This

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10749: debug: add support for IPC (interprocessor communication) debug messages

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10749: URL: https://github.com/apache/nuttx/pull/10749 -- 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: debug: add support for IPC (interprocessor communication) debug messages

2023-09-21 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 4c9c0c8be2 debug: add support for IPC (interpr

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10751: Fix Kconfig style

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10751: URL: https://github.com/apache/nuttx/pull/10751 -- 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: Fix Kconfig style

2023-09-21 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 4f985f4367 Fix Kconfig style 4f985f4367 is des

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #9940: driver/fb: add fb_get_planeinfo and initialize local variable pinfo

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on PR #9940: URL: https://github.com/apache/nuttx/pull/9940#issuecomment-1729928131 don't need anymore, let's close it. -- 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

[GitHub] [nuttx] xiaoxiang781216 closed pull request #9940: driver/fb: add fb_get_planeinfo and initialize local variable pinfo

2023-09-21 Thread via GitHub
xiaoxiang781216 closed pull request #9940: driver/fb: add fb_get_planeinfo and initialize local variable pinfo URL: https://github.com/apache/nuttx/pull/9940 -- 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

[GitHub] [nuttx] TaiJuWu commented on issue #9531: Thread holding spinlock can be blocked.

2023-09-21 Thread via GitHub
TaiJuWu commented on issue #9531: URL: https://github.com/apache/nuttx/issues/9531#issuecomment-1729930478 > Suspending the holder of a spinlock can cause a myriad of failures. Suspending the holder does not free the spinlock; the spinlock remains locked while the holder is blocked. In the

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10753: nucleo-l432kc:Fix I2C1 pinout.

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10753: URL: https://github.com/apache/nuttx/pull/10753 -- 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 (4f985f4367 -> f0bc20c815)

2023-09-21 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 4f985f4367 Fix Kconfig style add f0bc20c815 Fix I2C1 pinout. No new revisions were added by this update. Summ

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10605: Implement ticket spinlock

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on code in PR #10605: URL: https://github.com/apache/nuttx/pull/10605#discussion_r162903 ## arch/arm64/include/spinlock.h: ## @@ -83,6 +83,25 @@ * -- Clear Exclusive access monitor (CLREX) This is used to * clear the state of the Local Exclu

[GitHub] [nuttx] mu578 commented on a diff in pull request #10605: Implement ticket spinlock

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10605: URL: https://github.com/apache/nuttx/pull/10605#discussion_r172111 ## arch/arm64/include/spinlock.h: ## @@ -83,6 +83,25 @@ * -- Clear Exclusive access monitor (CLREX) This is used to * clear the state of the Local Exclusive Monit

[GitHub] [nuttx] mu578 commented on a diff in pull request #10605: Implement ticket spinlock

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10605: URL: https://github.com/apache/nuttx/pull/10605#discussion_r172111 ## arch/arm64/include/spinlock.h: ## @@ -83,6 +83,25 @@ * -- Clear Exclusive access monitor (CLREX) This is used to * clear the state of the Local Exclusive Monit

[GitHub] [nuttx] TaiJuWu commented on pull request #9739: implement read-write lock based on nxmutex

2023-09-21 Thread via GitHub
TaiJuWu commented on PR #9739: URL: https://github.com/apache/nuttx/pull/9739#issuecomment-1730041031 Maybe it’s called rw_semaphore because there is a rw_spinlock in Linux. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [nuttx] mu578 commented on a diff in pull request #10724: riscv/riscv_pmp.c: fix broken TOR checks

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10724: URL: https://github.com/apache/nuttx/pull/10724#discussion_r1331980388 ## arch/risc-v/src/common/riscv_pmp.c: ## @@ -100,32 +101,6 @@ typedef struct pmp_entry_s pmp_entry_t; * Private Functions ***

[GitHub] [nuttx] mu578 commented on a diff in pull request #10724: riscv/riscv_pmp.c: fix broken TOR checks

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10724: URL: https://github.com/apache/nuttx/pull/10724#discussion_r1331980388 ## arch/risc-v/src/common/riscv_pmp.c: ## @@ -100,32 +101,6 @@ typedef struct pmp_entry_s pmp_entry_t; * Private Functions ***

[GitHub] [nuttx] mu578 commented on a diff in pull request #10724: riscv/riscv_pmp.c: fix broken TOR checks

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10724: URL: https://github.com/apache/nuttx/pull/10724#discussion_r1331980388 ## arch/risc-v/src/common/riscv_pmp.c: ## @@ -100,32 +101,6 @@ typedef struct pmp_entry_s pmp_entry_t; * Private Functions ***

[GitHub] [nuttx] mu578 commented on a diff in pull request #10724: riscv/riscv_pmp.c: fix broken TOR checks

2023-09-21 Thread via GitHub
mu578 commented on code in PR #10724: URL: https://github.com/apache/nuttx/pull/10724#discussion_r1331980388 ## arch/risc-v/src/common/riscv_pmp.c: ## @@ -100,32 +101,6 @@ typedef struct pmp_entry_s pmp_entry_t; * Private Functions ***

[GitHub] [nuttx-apps] acassis commented on a diff in pull request #2082: Fixes compiler warnings while printing uint32_t and int32_t values.

2023-09-21 Thread via GitHub
acassis commented on code in PR #2082: URL: https://github.com/apache/nuttx-apps/pull/2082#discussion_r1333492910 ## examples/ina226/ina226_main.c: ## @@ -70,7 +71,7 @@ int main(int argc, FAR char *argv[]) break; } - printf("U=%12u uV I=%12d uA\n", sam

[GitHub] [nuttx] tmedicci opened a new pull request, #10755: drivers/timers: Add a new ioctl method to set a callback directly

2023-09-21 Thread via GitHub
tmedicci opened a new pull request, #10755: URL: https://github.com/apache/nuttx/pull/10755 ## Summary * drivers/timers: Add a new ioctl method to set a callback directly In order to be able to set a callback to be called when the timer expires, add the `TCIOC_SETCALLBACK` ioct

[GitHub] [nuttx] acassis merged pull request #10745: Regulator:fix some issues about rpmsg regualtor

2023-09-21 Thread via GitHub
acassis merged PR #10745: URL: https://github.com/apache/nuttx/pull/10745 -- 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] 02/02: regulator:fix some issues when use rpmsg

2023-09-21 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 2db471fab3ee2bc76e6ae388ed2dd7a4977c8fce Author: dulibo1 AuthorDate: Tue Sep 19 19:40:01 2023 +0800 regulator:fix s

[nuttx] branch master updated (f0bc20c815 -> 2db471fab3)

2023-09-21 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 f0bc20c815 Fix I2C1 pinout. new da1cd59f35 regualtor:fix regulator_register check rpmsg regulator which leads to

[nuttx] 01/02: regualtor:fix regulator_register check rpmsg regulator which leads to recursion

2023-09-21 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 da1cd59f35232dddec869a0c4793dbc2d5e8bb36 Author: dulibo1 AuthorDate: Mon Sep 18 19:14:11 2023 +0800 regualtor:fix r

[nuttx-website] branch asf-site updated: Publishing web: 07abea83aab63736f2895f109c448ae631509f46 docs: 2db471fab3ee2bc76e6ae388ed2dd7a4977c8fce

2023-09-21 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 52842fa9 Publishing web: 07abea83

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10705: sched/clock Add special handling for TCB null pointer cases

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10705: URL: https://github.com/apache/nuttx/pull/10705 -- 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 (2db471fab3 -> 13ee3f8117)

2023-09-21 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 2db471fab3 regulator:fix some issues when use rpmsg add 13ee3f8117 sched/clock Add special handling for TCB nul

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10746: clk:fix some issues when use rpmsg clk

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10746: URL: https://github.com/apache/nuttx/pull/10746 -- 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 (13ee3f8117 -> b57e43b4d0)

2023-09-21 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 13ee3f8117 sched/clock Add special handling for TCB null pointer cases add b57e43b4d0 clk:fix some issues when

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10733: tools/minudumpserver: support auto parse log file feature

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10733: URL: https://github.com/apache/nuttx/pull/10733 -- 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: tools/minudumpserver: support auto parse log file feature

2023-09-21 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 524cb33729 tools/minudumpserver: support auto

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10739: add wchar api implementation

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10739: URL: https://github.com/apache/nuttx/pull/10739 -- 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 (524cb33729 -> abfb7da553)

2023-09-21 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 524cb33729 tools/minudumpserver: support auto parse log file feature add 181a2d916d libs/libc/wchar: add wcspbr

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10723: armv8m/strcpy: add arch optimize version

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #10723: URL: https://github.com/apache/nuttx/pull/10723 -- 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 (abfb7da553 -> 2d817deecb)

2023-09-21 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 abfb7da553 libs/libc/libc.csv: add the implemented wchar api declaration add 2d817deecb armv8m/strcpy: add arc

[GitHub] [nuttx-apps] hujun260 opened a new pull request, #2083: libuv: fix build error

2023-09-21 Thread via GitHub
hujun260 opened a new pull request, #2083: URL: https://github.com/apache/nuttx-apps/pull/2083 If UV_ONCE_INIT is a struct, the following errors will occur: libuv/src/unix/nuttx.c: In function 'uv__global_get': /home/hujun5/downloads1/vela_sim/apps/system/libuv/libuv/include/uv/unix.h

[GitHub] [nuttx-apps] xiaoxiang781216 merged pull request #2082: Fixes compiler warnings while printing uint32_t and int32_t values.

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #2082: URL: https://github.com/apache/nuttx-apps/pull/2082 -- 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: Fixes compiler warnings while printing uint32_t and int32_t values.

2023-09-21 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 e62e1e91f Fixes compiler warnings while p

[GitHub] [nuttx-apps] xiaoxiang781216 commented on pull request #2076: feature: implement simple spinlock test

2023-09-21 Thread via GitHub
xiaoxiang781216 commented on PR #2076: URL: https://github.com/apache/nuttx-apps/pull/2076#issuecomment-1730597704 has more need fix? @TaiJuWu -- 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

[GitHub] [nuttx-apps] xiaoxiang781216 merged pull request #2081: pm:add pm runtime testcase

2023-09-21 Thread via GitHub
xiaoxiang781216 merged PR #2081: URL: https://github.com/apache/nuttx-apps/pull/2081 -- 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...

  1   2   >