Re: [PR] stm32f4discovery/cxxtest: Fix gcc13.2 compiler error [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11414: URL: https://github.com/apache/nuttx/pull/11414#issuecomment-1859725475 @xiaoxiang781216 looks like more things are broken -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
Rdk-T opened a new pull request, #11415: URL: https://github.com/apache/nuttx/pull/11415 ## Summary Add a cmake variable so external project can detect nuttx is used. ## Impact None ## Testing Tested on arduino-due for external project kickcat. -- This is an automated me

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
Rdk-T commented on PR #11415: URL: https://github.com/apache/nuttx/pull/11415#issuecomment-1859872901 ping @leducp @trns1997 -- 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.

Re: [PR] stm32f4discovery/cxxtest: Fix gcc13.2 compiler error [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on PR #11414: URL: https://github.com/apache/nuttx/pull/11414#issuecomment-1859980480 > @xiaoxiang781216 looks like more things are broken yes, look like the compiler isn't smart enough to handle the complex case correctly. -- This is an automated message

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1429968865 ## examples/rmtchar/rmtchar_receiver.c: ## @@ -0,0 +1,137 @@ +/ + * apps/examples/rmtcha

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1429969521 ## examples/rmtchar/rmtchar_transmitter.c: ## @@ -0,0 +1,155 @@ +/ + * apps/examples/rmt

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1429970658 ## examples/rmtchar/rmtchar_main.c: ## @@ -0,0 +1,364 @@ +/ + * apps/examples/rmtchar/rm

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#issuecomment-1860322561 CI seems to be failing due to unrelated issues... -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abo

Re: [PR] cmake: restore old behavior for savedefconfig [nuttx]

2023-12-18 Thread via GitHub
anchao commented on PR #11407: URL: https://github.com/apache/nuttx/pull/11407#issuecomment-1860432307 @raiden00pl I'm surprised why this commit was reverted. It maintains the same functionality as `tools/refresh.sh`. this change is a good improvement because overwriting the original `defc

[PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
anchao opened a new pull request, #11416: URL: https://github.com/apache/nuttx/pull/11416 ## Summary Revert "cmake: restore old behavior for savedefconfig" @raiden00pl I'm surprised why this commit was reverted. It maintains the same functionality as `tools/refresh.sh`. thi

Re: [PR] cmake: restore old behavior for savedefconfig [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11407: URL: https://github.com/apache/nuttx/pull/11407#issuecomment-1860456170 @ancho I can't agree. `make savedefconfig` in NuttX doesn't modify the original file, and if cmake use the same `savedefconfig` command, then it should behave like `make savedefconfig`

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860461071 copy from https://github.com/apache/nuttx/pull/11407#issuecomment-1860456170 I can't agree. make savedefconfig in NuttX doesn't modify the original file, and if cmake use the sam

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
anchao commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860478577 This is an improvement of cmake, because it does not need to implement an additional `refresh.sh` to refresh each `defconfig`. I think the makefile base should also implement same feature.

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860484700 consistency is more important than minor improvements for users, especially when we're talking about tools that are standard in the industry (`make savedefconifg`) -- This is an aut

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
anchao commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860494217 `make savedefconifg` depends on the implementation of the operating system. This is the era of `git`. Any changes will be displayed in `git`. If your changes involve `defconfig`, then I ho

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860544046 > If your changes involve defconfig, then I hope that the relevant config has been replaced by savedefconfig before submitting the code, instead of stupidly going to diff with the def

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#issuecomment-1860563332 @tmedicci ci break is fixed here: https://github.com/apache/nuttx/pull/11414 -- This is an automated message from the Apache Git Service. To respond to the message, please log

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
anchao commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860573668 If you think it's inconsistent, why not enhance the makefile? The implementation of CMake is obviously better: 1. Junior developers don't need to compare the differences in defconfig every

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860666050 > If you think it's inconsistent, why not enhance the makefile? Then it won't be consistent with the default behavior of other canonical projects using defconfig like linux, uboo

[PR] esp32<|s2|s3>_board_spiflash: Fix error message about SmartFS init [nuttx]

2023-12-18 Thread via GitHub
tmedicci opened a new pull request, #11417: URL: https://github.com/apache/nuttx/pull/11417 ## Summary * esp32<|s2|s3>_board_spiflash: Substitute fs messages to syslog Once these messages are thrown during the system's bring-up, it is advisable them to be output by the syslog

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
anchao commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1860980884 You're right, kconfig is used in many projects, but here are too many features in kconfig-frontend that need to be further enhanced(RegEx,rpath,plugin,etc),otherwise why would kconfiglib b

Re: [PR] stm32f4discovery/cxxtest: Fix gcc13.2 compiler error [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on PR #11414: URL: https://github.com/apache/nuttx/pull/11414#issuecomment-1861047254 @raiden00pl the good news is that the new compiler warning finds many real problems. -- This is an automated message from the Apache Git Service. To respond to the message, plea

Re: [PR] esp32<|s2|s3>_board_spiflash: Fix error message about SmartFS init [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11417: URL: https://github.com/apache/nuttx/pull/11417 -- 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 (6c4b30736e -> 65d736bfc1)

2023-12-18 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 6c4b30736e arm/debug:fix gdbstub clear fpb & dwt when already use jtag/swo bug new 908bac55f3 esp32<|s2|s3>_bo

(nuttx) 02/02: esp32<|s2|s3>_board_spiflash: Substitute fs messages to syslog

2023-12-18 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 65d736bfc14c915f7055c66f6ad470930a06aea0 Author: Tiago Medicci Serrano AuthorDate: Tue Dec 12 10:40:32 2023 -0300

(nuttx) 01/02: esp32<|s2|s3>_board_spiflash: Fix error message about SmartFS init

2023-12-18 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 908bac55f352f89b80fc94f5cd85d983dcb03aa0 Author: Tiago Medicci Serrano AuthorDate: Tue Dec 12 09:56:28 2023 -0300

Re: [I] esp32s3-devkit: spi flash initialize failed [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 closed issue #11337: esp32s3-devkit: spi flash initialize failed URL: https://github.com/apache/nuttx/issues/11337 -- 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

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #11415: URL: https://github.com/apache/nuttx/pull/11415#discussion_r1430430944 ## tools/toolchain.cmake.export: ## @@ -1,5 +1,6 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) +set(NUTTX 1) Review Comment: should we use

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #11415: URL: https://github.com/apache/nuttx/pull/11415#discussion_r1430430944 ## tools/toolchain.cmake.export: ## @@ -1,5 +1,6 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) +set(NUTTX 1) Review Comment: should we __N

Re: [PR] sim_lcd: add open & close [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11381: URL: https://github.com/apache/nuttx/pull/11381 -- 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 (65d736bfc1 -> f4c8a17837)

2023-12-18 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 65d736bfc1 esp32<|s2|s3>_board_spiflash: Substitute fs messages to syslog add f4c8a17837 sim_lcd: add open & c

Re: [PR] drivers/goldfish_fb: optimize goldfish fb register [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11380: URL: https://github.com/apache/nuttx/pull/11380 -- 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: drivers/goldfish_fb: optimize goldfish fb register

2023-12-18 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 2a92748c42 drivers/goldfish_fb: optimize goldf

Re: [PR] video/vnc: add vnc_fb_register [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #11383: URL: https://github.com/apache/nuttx/pull/11383#discussion_r1430437871 ## boards/arm/samv7/samv71-xult/src/sam_bringup.c: ## @@ -61,6 +61,10 @@ # include #endif +#ifdef CONFIG_VNCSERVER +#include Review Comment: ```sugge

Re: [PR] stm32f4discovery/cxxtest: Fix gcc13.2 compiler error [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11414: URL: https://github.com/apache/nuttx/pull/11414#issuecomment-1861102861 @xiaoxiang781216 that's interesting how many new bugs were found :) Could you update the PR title as it now contains more commits ? -- This is an automated message from the Apache

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430448491 ## examples/rmtchar/rmtchar.h: ## @@ -0,0 +1,127 @@ +/ + * apps/examples/rmtchar/

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #11415: URL: https://github.com/apache/nuttx/pull/11415#discussion_r1430430944 ## tools/toolchain.cmake.export: ## @@ -1,5 +1,6 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) +set(NUTTX 1) Review Comment: should we use

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
Rdk-T commented on code in PR #11415: URL: https://github.com/apache/nuttx/pull/11415#discussion_r1430455595 ## tools/toolchain.cmake.export: ## @@ -1,5 +1,6 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) +set(NUTTX 1) Review Comment: Usually CMake variables

Re: [PR] fix new warning reported by gcc 13 [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on PR #11414: URL: https://github.com/apache/nuttx/pull/11414#issuecomment-1861134317 @raiden00pl 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 comm

Re: [PR] Revert "cmake: restore old behavior for savedefconfig" [nuttx]

2023-12-18 Thread via GitHub
raiden00pl commented on PR #11416: URL: https://github.com/apache/nuttx/pull/11416#issuecomment-1861240312 Maybe we can introduce another command other than `savedefconfig` and add another target: ``` +add_custom_target( + refresh + COMMAND ${CMAKE_COMMAND} -E copy_if_diffe

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430499305 ## examples/rmtchar/rmtchar_main.c: ## @@ -0,0 +1,360 @@ +/ + * apps/examples/rmtchar/rm

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430499552 ## examples/rmtchar/rmtchar_main.c: ## @@ -0,0 +1,360 @@ +/ + * apps/examples/rmtchar/rm

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430500049 ## examples/rmtchar/rmtchar.h: ## @@ -0,0 +1,127 @@ +/ + * apps/examples/rmtchar/rmtchar

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430530341 ## examples/rmtchar/rmtchar_transmitter.c: ## @@ -0,0 +1,156 @@ +/ + * apps/examples/rmt

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430541184 ## examples/rmtchar/rmtchar_main.c: ## @@ -0,0 +1,360 @@ +/ + * apps/examples/rmt

Re: [PR] risc-v/esp32c6: Add ostest defconfig [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11418: URL: https://github.com/apache/nuttx/pull/11418 -- 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 (2a92748c42 -> 9473267620)

2023-12-18 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 2a92748c42 drivers/goldfish_fb: optimize goldfish fb register add 9473267620 risc-v/esp32c6: Add ostest defconf

Re: [PR] Cmake set NUTTX variable [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 commented on code in PR #11415: URL: https://github.com/apache/nuttx/pull/11415#discussion_r1430553018 ## tools/toolchain.cmake.export: ## @@ -1,5 +1,6 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) +set(NUTTX 1) Review Comment: I made this s

Re: [PR] examples/rmtchar: Implement RX and/or TX using the RMT char driver [nuttx-apps]

2023-12-18 Thread via GitHub
tmedicci commented on code in PR #2232: URL: https://github.com/apache/nuttx-apps/pull/2232#discussion_r1430573604 ## examples/rmtchar/rmtchar_main.c: ## @@ -0,0 +1,360 @@ +/ + * apps/examples/rmtchar/rm

Re: [PR] Introduce HAVE_RUST config. [nuttx]

2023-12-18 Thread via GitHub
ptka closed pull request #5566: Introduce HAVE_RUST config. URL: https://github.com/apache/nuttx/pull/5566 -- 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-mai

(nuttx-apps) branch dependabot/github_actions/actions/upload-artifact-4 created (now dac6596ad)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/upload-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git at dac6596ad build(deps): bump actions/upload-artifact from 3 to 4

[PR] build(deps): bump actions/download-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
dependabot[bot] opened a new pull request, #2233: URL: https://github.com/apache/nuttx-apps/pull/2233 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. Release notes Sourced from https://github.com/actions/download-artifact/releases";>act

(nuttx-apps) branch dependabot/github_actions/actions/download-artifact-4 created (now 0d4cd44ae)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/download-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git at 0d4cd44ae build(deps): bump actions/download-artifact from 3 t

[PR] build(deps): bump actions/upload-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
dependabot[bot] opened a new pull request, #2234: URL: https://github.com/apache/nuttx-apps/pull/2234 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. Release notes Sourced from https://github.com/actions/upload-artifact/releases";>actions/up

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

2023-12-18 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 f8da53c7 Publishing web: 36ddd7c6

Re: [PR] fix new warning reported by gcc 13 [nuttx]

2023-12-18 Thread via GitHub
anchao merged PR #11414: URL: https://github.com/apache/nuttx/pull/11414 -- 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) 01/06: stm32f4discovery/cxxtest: Fix gcc13.2 compiler error

2023-12-18 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 commit d2670713983b324da55b5eaec518d4ef73546e8d Author: Xiang Xiao AuthorDate: Mon Dec 18 11:07:16 2023 +0800 stm32f4discov

(nuttx) 03/06: arch/arm: Disable -Warray-bound for rp2040, dm320 and lpc31xx

2023-12-18 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 commit e42780bb0f5c1bf406179fcd036d37813919addc Author: Xiang Xiao AuthorDate: Mon Dec 18 17:48:07 2023 +0800 arch/arm: Dis

(nuttx) 04/06: modem/alt1250: Fix 'inst' may be used uninitialized

2023-12-18 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 commit 0d0867484a90063bab7d511df2623f4c83708d8c Author: Xiang Xiao AuthorDate: Mon Dec 18 19:18:30 2023 +0800 modem/alt1250

(nuttx) 05/06: am335x_lcdc: Fix error: array subscript 0 is outside array bounds of 'volatile uint32_t[0]'

2023-12-18 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 commit d54c79126a8c03ec40dbae55180ae3cec52c7416 Author: Xiang Xiao AuthorDate: Mon Dec 18 21:32:54 2023 +0800 am335x_lcdc:

(nuttx) 02/06: lpc43xx/usb: Fix gcc13.2 compiler error

2023-12-18 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 commit 1e696425fd1759b77bf36d9dd805c0960976afea Author: Xiang Xiao AuthorDate: Mon Dec 18 12:38:17 2023 +0800 lpc43xx/usb:

(nuttx) branch master updated (9473267620 -> 31a6ffa15c)

2023-12-18 Thread archer
This is an automated email from the ASF dual-hosted git repository. archer pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 9473267620 risc-v/esp32c6: Add ostest defconfig new d267071398 stm32f4discovery/cxxtest: Fix gcc13.2 compiler erro

(nuttx) 06/06: arm/sama5: Fix error: array subscript 0 is outside array bounds

2023-12-18 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 commit 31a6ffa15ca4e1604f80a02646a73c16570b8cbb Author: Xiang Xiao AuthorDate: Mon Dec 18 23:31:20 2023 +0800 arm/sama5: Fi

Re: [PR] build(deps): bump actions/download-artifact from 3 to 4 [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 closed pull request #11412: build(deps): bump actions/download-artifact from 3 to 4 URL: https://github.com/apache/nuttx/pull/11412 -- 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 th

Re: [PR] build(deps): bump actions/download-artifact from 3 to 4 [nuttx]

2023-12-18 Thread via GitHub
dependabot[bot] commented on PR #11412: URL: https://github.com/apache/nuttx/pull/11412#issuecomment-1861918368 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let

(nuttx) branch dependabot/github_actions/actions/download-artifact-4 deleted (was f7c77fc4c3)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/download-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx.git was f7c77fc4c3 build(deps): bump actions/download-artifact from 3 to 4

Re: [PR] build(deps): bump actions/upload-artifact from 3 to 4 [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 closed pull request #11411: build(deps): bump actions/upload-artifact from 3 to 4 URL: https://github.com/apache/nuttx/pull/11411 -- 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

Re: [PR] build(deps): bump actions/upload-artifact from 3 to 4 [nuttx]

2023-12-18 Thread via GitHub
dependabot[bot] commented on PR #11411: URL: https://github.com/apache/nuttx/pull/11411#issuecomment-1861919021 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let

(nuttx) branch dependabot/github_actions/actions/upload-artifact-4 deleted (was 62cae43b01)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/upload-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx.git was 62cae43b01 build(deps): bump actions/upload-artifact from 3 to 4 The

[PR] WASI-SDK.defs: Simplify CFLAGS filters [nuttx-apps]

2023-12-18 Thread via GitHub
no1wudi opened a new pull request, #2235: URL: https://github.com/apache/nuttx-apps/pull/2235 ## Summary WASI-SDK.defs: Simplify CFLAGS filters And also prevent introduce user defined but wasm clang unsupported flags. ## Impact Wasm build ## Testing Vela -- Th

Re: [PR] syslog/ramlog: improve ramlog performance [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11402: URL: https://github.com/apache/nuttx/pull/11402 -- 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 (b67c9e6ca7 -> 1c9fab65d8)

2023-12-18 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 b67c9e6ca7 syslog/ramlog: improve ramlog performance new 87553e71f8 cmake build file support with libcxx 17.0.6

(nuttx) 01/02: cmake build file support with libcxx 17.0.6

2023-12-18 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 87553e71f87142c8b27a7f5f346dcb881c87894f Author: xuxin19 AuthorDate: Thu Dec 14 12:18:01 2023 +0800 cmake build f

(nuttx) branch master updated: syslog/ramlog: improve ramlog performance

2023-12-18 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 b67c9e6ca7 syslog/ramlog: improve ramlog perfo

Re: [PR] cmake:build file support with libcxx 17.0.6 [nuttx]

2023-12-18 Thread via GitHub
xiaoxiang781216 merged PR #11395: URL: https://github.com/apache/nuttx/pull/11395 -- 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: Revert "testlist: Disable sim:matter ci temporarily"

2023-12-18 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 1c9fab65d8d114d213973d6c1f26ea4ffc429e54 Author: xuxin19 AuthorDate: Mon Dec 18 12:15:41 2023 +0800 Revert "testl

(nuttx-apps) branch dependabot/github_actions/actions/upload-artifact-4 deleted (was dac6596ad)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/upload-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git was dac6596ad build(deps): bump actions/upload-artifact from 3 to 4

Re: [PR] build(deps): bump actions/download-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
xiaoxiang781216 closed pull request #2233: build(deps): bump actions/download-artifact from 3 to 4 URL: https://github.com/apache/nuttx-apps/pull/2233 -- 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

Re: [PR] build(deps): bump actions/download-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
dependabot[bot] commented on PR #2233: URL: https://github.com/apache/nuttx-apps/pull/2233#issuecomment-1862153338 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version,

(nuttx-apps) branch dependabot/github_actions/actions/download-artifact-4 deleted (was 0d4cd44ae)

2023-12-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/github_actions/actions/download-artifact-4 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git was 0d4cd44ae build(deps): bump actions/download-artifact from 3 t

Re: [PR] build(deps): bump actions/upload-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
xiaoxiang781216 closed pull request #2234: build(deps): bump actions/upload-artifact from 3 to 4 URL: https://github.com/apache/nuttx-apps/pull/2234 -- 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] build(deps): bump actions/upload-artifact from 3 to 4 [nuttx-apps]

2023-12-18 Thread via GitHub
dependabot[bot] commented on PR #2234: URL: https://github.com/apache/nuttx-apps/pull/2234#issuecomment-1862153462 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version,

Re: [PR] ostest: Add initial support for CONFIG_BUILD_KERNEL [nuttx-apps]

2023-12-18 Thread via GitHub
fxysunshine commented on code in PR #2205: URL: https://github.com/apache/nuttx-apps/pull/2205#discussion_r1430962804 ## testing/ostest/ostest_main.c: ## @@ -641,6 +680,28 @@ int main(int argc, FAR char **argv) #else int ostest_result = OK; #endif + int i; + pid_t pid; +

[PR] sensors: mx56xx: Add support for second order compensation [nuttx]

2023-12-18 Thread via GitHub
takumiando opened a new pull request, #11419: URL: https://github.com/apache/nuttx/pull/11419 In order to obtain best accuracy over temperature range, particularly in low temperature, it is recommended to compensate the non-linearity over the temperature. ref: ENG_DS_MS5611-01BA