Re: [PR] tools/docker: install file/tclsh tools: [nuttx]

2024-05-20 Thread via GitHub
yamt commented on PR #12374: URL: https://github.com/apache/nuttx/pull/12374#issuecomment-2119816887 > ## Summary > > tools/docker: install file/tclsh tools: > > fix CI compilation errors: github/workspace/sources/apps/database/sqlite/sqlite/configure: line 5204: /usr/bin/file

Re: [PR] armv6/7/8-m: use ISB instruction immediately after the MSR instruction [nuttx]

2024-05-20 Thread via GitHub
masayuki2009 commented on PR #12379: URL: https://github.com/apache/nuttx/pull/12379#issuecomment-2119892115 @hujun260 Do you have any references on the change? (e.g. ARM technical reference manuals or application notes). -- This is an automated message from the Apache Git Service

[PR] Fix Error: logcat_service.c:69:11: error: variable 'ret' set but not used [nuttx-apps]

2024-05-20 Thread via GitHub
xiaoxiang781216 opened a new pull request, #2401: URL: https://github.com/apache/nuttx-apps/pull/2401 ## Summary Fix ci error reported here: https://github.com/apache/nuttx/actions/runs/9153517935/job/25162649194?pr=12380 ## Impact microADB ## Testing ci

Re: [PR] add stm32h755II chip [nuttx]

2024-05-20 Thread via GitHub
jfbblue0922 commented on PR #12350: URL: https://github.com/apache/nuttx/pull/12350#issuecomment-2120006918 @davids5 Thank you for your suggestions. I would like to revise it again according to your suggestions. I would like to modify it within stm32h7x3xx_rcc.c instead o

Re: [PR] armv6/7/8-m: use ISB instruction immediately after the MSR instruction [nuttx]

2024-05-20 Thread via GitHub
hujun260 commented on PR #12379: URL: https://github.com/apache/nuttx/pull/12379#issuecomment-2120294626 > @hujun260 Do you have any references on the change? (e.g. ARM technical reference manuals or application notes). https://developer.arm.com/documentation/101928/0101/The-Cortex-M

Re: [PR] signal: fix deadlock when sigdeliver call enter_critical_section [nuttx]

2024-05-20 Thread via GitHub
masayuki2009 commented on PR #12380: URL: https://github.com/apache/nuttx/pull/12380#issuecomment-2120358622 @hujun260 Why didn't you modify arch/sim/src/sim/sim_sigdeliver.c? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to G

Re: [PR] Fixed collision between CAN1 and I2C1. Board nucleo-l476rg. [nuttx]

2024-05-20 Thread via GitHub
ivan95603 commented on PR #12373: URL: https://github.com/apache/nuttx/pull/12373#issuecomment-2120360922 @xiaoxiang781216 Thanks. -- 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 com

Re: [PR] add stm32h755II chip [nuttx]

2024-05-20 Thread via GitHub
acassis commented on PR #12350: URL: https://github.com/apache/nuttx/pull/12350#issuecomment-2120377321 @jfbblue0922 something like: ``` #if defined(CONFIG_ARCH_CHIP_STM32H755II) #define STM32_PWR_CR3_VALUE (STM32_PWR_CR3_LDOEN) #else #define STM32_PWR_CR3_VALUE (STM32_PWR_

Re: [PR] armv6/7/8-m: use ISB instruction immediately after the MSR instruction [nuttx]

2024-05-20 Thread via GitHub
acassis commented on PR #12379: URL: https://github.com/apache/nuttx/pull/12379#issuecomment-2120489789 > > @hujun260 Do you have any references on the change? (e.g. ARM technical reference manuals or application notes). > > https://developer.arm.com/documentation/101928/0101/The-Cor

[I] PWM driver refactorization? [nuttx]

2024-05-20 Thread via GitHub
michallenc opened a new issue, #12381: URL: https://github.com/apache/nuttx/issues/12381 I was looking at PWM driver API interface because of one project and some possible changes have come to my mind. The current API utilizes two structures, `pwm_info_s` and `pwm_chan_s` with the latter be

Re: [PR] Add a few optional text heap APIs to support esp32s3 [nuttx]

2024-05-20 Thread via GitHub
xiaoxiang781216 merged PR #12355: URL: https://github.com/apache/nuttx/pull/12355 -- 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: Add a few optional text heap APIs to support esp32s3

2024-05-20 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 d196f800b07a9e272cbec61ddcde667a6175ddcb Author: YAMAMOTO Takashi AuthorDate: Wed May 15 09:23:13 2024 +0900 Add

(nuttx) branch master updated (8e9f24e02e -> 1ee279c292)

2024-05-20 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 8e9f24e02e arch/sim: temporary remove vfork test to fix cibreak on arch sim new d196f800b0 Add a few optional

(nuttx) 02/02: nuttx kconfig: rename a few recently-added options

2024-05-20 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 1ee279c292afe243723f9b150871e8678628cdc5 Author: YAMAMOTO Takashi AuthorDate: Mon May 20 12:11:01 2024 +0900 nutt

Re: [I] PWM driver refactorization? [nuttx]

2024-05-20 Thread via GitHub
acassis commented on issue #12381: URL: https://github.com/apache/nuttx/issues/12381#issuecomment-2121007204 Hi @michallenc I think this modification makes sense! Initially NuttX didn't have support to multichannel PWM, then it was added later as an aggregation. Your proposal fixes this thi

[PR] arch/arm/samv7: fix USART1 TXD pinmux [nuttx]

2024-05-20 Thread via GitHub
pkarashchenko opened a new pull request, #12382: URL: https://github.com/apache/nuttx/pull/12382 ## Summary Fix pinmux of SAMv7 USART1 TXD ## Impact Improve SAMv7 USART1 ## Testing Tested similar change with SAMv7 LIN on USART1 -- This is an automated message fro

Re: [PR] benchmarks/ramspeed: Don't expose interrupt control with kernel configuration. [nuttx-apps]

2024-05-20 Thread via GitHub
g2gps commented on PR #2393: URL: https://github.com/apache/nuttx-apps/pull/2393#issuecomment-2121469377 Should be a bit clearer, and covers CONFIG_BUILD_PROTECTED. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the U

Re: [PR] logging/nxscope: add tool to stream sensor data [nuttx-apps]

2024-05-20 Thread via GitHub
xiaoxiang781216 commented on code in PR #2398: URL: https://github.com/apache/nuttx-apps/pull/2398#discussion_r1607439942 ## system/nxscope_sensors/Kconfig: ## @@ -0,0 +1,72 @@ +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt

Re: [PR] wamr: rename a few recently-added nuttx options [nuttx-apps]

2024-05-20 Thread via GitHub
xiaoxiang781216 merged PR #2400: URL: https://github.com/apache/nuttx-apps/pull/2400 -- 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: wamr: rename a few recently-added nuttx options

2024-05-20 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 a9ab5ec8a wamr: rename a few recently-add

(nuttx-website) branch asf-site updated: Publishing web: ce5ab6cc062dbbe6065b26acd6a7b45062848749 docs: 1ee279c292afe243723f9b150871e8678628cdc5

2024-05-20 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 b85b30c24 Publishing web: ce5ab6c

(nuttx-apps) branch master updated: Fix Error: logcat_service.c:69:11: error: variable 'ret' set but not used

2024-05-20 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-apps.git The following commit(s) were added to refs/heads/master by this push: new ca310eb29 Fix Error: logcat_service.c:69:11:

Re: [PR] Fix Error: logcat_service.c:69:11: error: variable 'ret' set but not used [nuttx-apps]

2024-05-20 Thread via GitHub
anchao merged PR #2401: URL: https://github.com/apache/nuttx-apps/pull/2401 -- 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.ap

Re: [PR] arch/arm/samv7: fix USART1 TXD pinmux [nuttx]

2024-05-20 Thread via GitHub
xiaoxiang781216 commented on code in PR #12382: URL: https://github.com/apache/nuttx/pull/12382#discussion_r1607447792 ## arch/arm/src/samv7/sam_serial_spi.c: ## @@ -69,16 +69,16 @@ struct sam_serial_spi_pins_s { - uint32_t mosi; - uint32_t miso; - uint32_t sck; - uint32

Re: [PR] sched: remove redundant variables "switched" [nuttx]

2024-05-20 Thread via GitHub
xiaoxiang781216 merged PR #12377: URL: https://github.com/apache/nuttx/pull/12377 -- 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: sched: remove redundant variables "switched"

2024-05-20 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 e067f897c0 sched: remove redundant variables "

Re: [PR] arm64 EL3 runtime support [nuttx]

2024-05-20 Thread via GitHub
xiaoxiang781216 merged PR #12353: URL: https://github.com/apache/nuttx/pull/12353 -- 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 (e067f897c0 -> 2f753a48c7)

2024-05-20 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 e067f897c0 sched: remove redundant variables "switched" add ae00569ef9 imx9_clockconfig: fix a thinko add

Re: [PR] benchmarks/ramspeed: Don't expose interrupt control with kernel configuration. [nuttx-apps]

2024-05-20 Thread via GitHub
xiaoxiang781216 merged PR #2393: URL: https://github.com/apache/nuttx-apps/pull/2393 -- 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: benchmarks/ramspeed: Don't expose interrupt control with kernel configuration.

2024-05-20 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 8b8094ea3 benchmarks/ramspeed: Don't expo

Re: [PR] add stm32h755II chip [nuttx]

2024-05-20 Thread via GitHub
jfbblue0922 commented on PR #12350: URL: https://github.com/apache/nuttx/pull/12350#issuecomment-2121557049 @acassis It turns out that this problem is not specific to stm32h755II. There are 6 power supply methods for stm32h7. We use '1.LDO supply' instead of '2.Direct SMPS supply

[PR] build(deps): bump requests from 2.31.0 to 2.32.0 in /Documentation [nuttx]

2024-05-20 Thread via GitHub
dependabot[bot] opened a new pull request, #12383: URL: https://github.com/apache/nuttx/pull/12383 Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.0. Release notes Sourced from https://github.com/psf/requests/releases";>requests's releases. v2.32.0 2

(nuttx) branch dependabot/pip/Documentation/requests-2.32.0 created (now d32f0beab9)

2024-05-20 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/pip/Documentation/requests-2.32.0 in repository https://gitbox.apache.org/repos/asf/nuttx.git at d32f0beab9 --- updated-dependencies: - dependency-name: requests dependen

Re: [PR] sched/tcb: share group for kthreads [nuttx]

2024-05-20 Thread via GitHub
yf13 commented on PR #12320: URL: https://github.com/apache/nuttx/pull/12320#issuecomment-2121894110 @xiangxiang781216 not sure if CI checks are back to normal? I saw issues with some LTP tests thus checked them with local build: ``` nsh> time ltp_behavior_WIFEXITED_1_1 Test PAS