[PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 opened a new pull request, #11542: URL: https://github.com/apache/nuttx/pull/11542 ## Summary Task activation/exit logs are helpful for device bringup, especially when user space nsh prompt doesn't show up. Putting them here also allows cleaning of logs in multiple `up_exi

Re: [PR] decoupling rptun ping and rptun_virtio_device, rptun ping and rptun. [nuttx]

2024-01-14 Thread via GitHub
raiden00pl commented on code in PR #11537: URL: https://github.com/apache/nuttx/pull/11537#discussion_r1451690897 ## drivers/rptun/Kconfig: ## @@ -38,11 +45,4 @@ config RPTUN_PM goto RAM-retention mode, can't access from another CPU. So, we provid

Re: [PR] risc-v/nuttsbi: add device specific initialization hook [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11541: URL: https://github.com/apache/nuttx/pull/11541 -- 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: risc-v/nuttsbi: add device specific initialization hook

2024-01-14 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 78e8c0dea5 risc-v/nuttsbi: add device specific

Re: [PR] fs: partition: fs_mbr: fix for MBR block count calculation. [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11540: URL: https://github.com/apache/nuttx/pull/11540 -- 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: fs: partition: fs_mbr: fix for MBR block count calculation.

2024-01-14 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 f01e395b1c fs: partition: fs_mbr: fix for MBR

Re: [PR] decoupling rptun ping and rptun_virtio_device, rptun ping and rptun. [nuttx]

2024-01-14 Thread via GitHub
raiden00pl commented on PR #11537: URL: https://github.com/apache/nuttx/pull/11537#issuecomment-1890903310 CI fails for some reason -- 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

Re: [PR] bluetooth: Prevent btsak from repeatedly showing the same error. [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11535: URL: https://github.com/apache/nuttx/pull/11535 -- 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 (f01e395b1c -> 2dac5e1b6a)

2024-01-14 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 f01e395b1c fs: partition: fs_mbr: fix for MBR block count calculation. add 2dac5e1b6a bluetooth: Prevent btsak

Re: [PR] libc.csv: Fix qsort signature with unexpected quotation mark [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11526: URL: https://github.com/apache/nuttx/pull/11526 -- 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: libc.csv: Fix qsort signature with unexpected quotation mark

2024-01-14 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 fe5ca39a79 libc.csv: Fix qsort signature with

Re: [I] ESP32S3: SPI cannot use. [nuttx]

2024-01-14 Thread via GitHub
w2016561536 commented on issue #11539: URL: https://github.com/apache/nuttx/issues/11539#issuecomment-1890953112 > @w2016561536 this issue is happening because you are not registering the SPI char device, you need to call spi_register() to do it. Please look how it is done in other boards.

[PR] esp32s3/spi: Add SPI bus init in bringup and fix SPI bus 2 and 3 conflict [nuttx]

2024-01-14 Thread via GitHub
w2016561536 opened a new pull request, #11543: URL: https://github.com/apache/nuttx/pull/11543 ## Summary 1. Add spi bus init in esp32s3_bringup.c 2. Fix IOMUX conflict between spi bus 2 and 3 3. Add spi defconfig ## Impact Fix esp32s3 spi bus and close #11539 ## Te

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
anchao commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451831802 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + +#if CONFIG_TASK_NAME_SIZE>

(nuttx-website) branch asf-site updated: Publishing web: 36ddd7c60a8230335eda886c909bc938739114a2 docs: fe5ca39a79ec13e16290d8a903fcd8bb2f87b4b5

2024-01-14 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 83c55b0b Publishing web: 36ddd7c6

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451841857 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + +#if CONFIG_TASK_NAME_SIZE>0

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451846126 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + Review Comment: Yes it ma

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451846126 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + Review Comment: Yes it ma

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451846126 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + Review Comment: Yes it ma

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451846126 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + Review Comment: Yes it ma

[PR] docs/comments: fix some typos [nuttx]

2024-01-14 Thread via GitHub
yf13 opened a new pull request, #11544: URL: https://github.com/apache/nuttx/pull/11544 ## Summary fix some typos in comments or docs ## Impact None ## Testing N/A -- This is an automated message from the Apache Git Service. To respond to the message, please log on to Gi

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
anchao commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451887328 ## sched/task/task_exit.c: ## @@ -88,6 +89,13 @@ int nxtask_exit(void) dtcb = this_task(); #endif +#if CONFIG_TASK_NAME_SIZE > 0 Review Comment: It seems there

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
anchao commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451889515 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + Review Comment: since s

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451895270 ## sched/task/task_exit.c: ## @@ -88,6 +89,13 @@ int nxtask_exit(void) dtcb = this_task(); #endif +#if CONFIG_TASK_NAME_SIZE > 0 Review Comment: Yes, that has be

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451741295 ## sched/task/task_activate.c: ## @@ -94,4 +94,11 @@ void nxtask_activate(FAR struct tcb_s *tcb) } leave_critical_section(flags); + +#if CONFIG_TASK_N

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
yf13 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451895270 ## sched/task/task_exit.c: ## @@ -88,6 +89,13 @@ int nxtask_exit(void) dtcb = this_task(); #endif +#if CONFIG_TASK_NAME_SIZE > 0 Review Comment: Yes, that has be

Re: [PR] docs/comments: fix some typos [nuttx]

2024-01-14 Thread via GitHub
anchao merged PR #11544: URL: https://github.com/apache/nuttx/pull/11544 -- 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

(nuttx) branch master updated: docs/comments: fix some typos

2024-01-14 Thread archer
This is an automated email from the ASF dual-hosted git repository. archer 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 3c327efd2f docs/comments: fix some typos 3c327efd

[PR] CMake: arm/armv8-r: init armv8-r cmake build [nuttx]

2024-01-14 Thread via GitHub
anchao opened a new pull request, #11545: URL: https://github.com/apache/nuttx/pull/11545 ## Summary CMake: arm/armv8-r: init armv8-r cmake build Test cmake build on aarch32 fvp: ``` $ cmake -B build -DBOARD_CONFIG=fvp-armv8r-aarch32/nsh -GNinja $ cmake --build build

(nuttx) branch master updated: sched/logging: add task activation/exit logs

2024-01-14 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 f280c33311 sched/logging: add task activation/

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 commented on code in PR #11542: URL: https://github.com/apache/nuttx/pull/11542#discussion_r1451989322 ## sched/task/task_exit.c: ## @@ -88,6 +89,13 @@ int nxtask_exit(void) dtcb = this_task(); #endif +#if CONFIG_TASK_NAME_SIZE > 0 Review Comment: The c

Re: [PR] sched/logging: add task activation/exit logs [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11542: URL: https://github.com/apache/nuttx/pull/11542 -- 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] decoupling rptun ping and rptun_virtio_device, rptun ping and rptun. [nuttx]

2024-01-14 Thread via GitHub
xiaoxiang781216 merged PR #11537: URL: https://github.com/apache/nuttx/pull/11537 -- 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) 02/02: rptun_ping: decoupling rptun ping and rptun. ping is not only rptun support, so move it to public part.

2024-01-14 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 df147406db4011267c57d86f029bcfa89fdd369d Author: wangyongrong AuthorDate: Thu Nov 30 18:21:21 2023 +0800 rptun_pi

(nuttx) 01/02: rptun ping: decoupling rptun ping and rptun virtio device

2024-01-14 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 11cefd087abde4647a072f26b7c56a5795dbe876 Author: wangyongrong AuthorDate: Fri Nov 24 16:56:32 2023 +0800 rptun pi

(nuttx) branch master updated (f280c33311 -> df147406db)

2024-01-14 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 f280c33311 sched/logging: add task activation/exit logs new 11cefd087a rptun ping: decoupling rptun ping and rp