[PR] sched/tcb: add preserved tcb flag to support static tcb [nuttx]

2024-02-25 Thread via GitHub
anchao opened a new pull request, #11774: URL: https://github.com/apache/nuttx/pull/11774 ## Summary sched/tcb: add preserved tcb flag to support static tcb Add support for static tcb, applications in some special case can initialize system resources in advance through

[PR] audio: migrate to SPDX identifier [nuttx]

2024-02-25 Thread via GitHub
jerpelea opened a new pull request, #11773: URL: https://github.com/apache/nuttx/pull/11773 ## Summary Most tools used for compliance and SBOM generation use SPDX identifiers. This change brings us a step closer to an easy SBOM generation. ## Impact Compliance ##

[PR] x86_64: cosmetics in Kconfig [nuttx]

2024-02-25 Thread via GitHub
szafonimateusz-mi opened a new pull request, #11771: URL: https://github.com/apache/nuttx/pull/11771 ## Summary - arch/x86_64/Kconfig: remove unused QEMU options boards definition should be in /boards - arch/intel64/Kconfig: add chip choice option this will be useful

[PR] arch/intel64: add software reset support [nuttx]

2024-02-25 Thread via GitHub
szafonimateusz-mi opened a new pull request, #11770: URL: https://github.com/apache/nuttx/pull/11770 ## Summary arch/intel64: add software reset support ## Impact ## Testing qemu and intel64 -- This is an automated message from the Apache Git Service. To respond to

(nuttx-apps) 01/02: cp:support -r recursive copies

2024-02-25 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 commit e8470f7d0e8fa1b10d3434c50d768f26c4d8379d Author: chenrun1 AuthorDate: Tue Jan 16 20:42:08 2024 +0800

(nuttx-apps) branch master updated (9e71031a0 -> bac8aab24)

2024-02-25 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-apps.git from 9e71031a0 graphics/lvgl: remove unused code new e8470f7d0 cp:support -r recursive copies new

(nuttx-apps) 02/02: cmd_cp:Skip mkdir when mkdir is not available

2024-02-25 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 commit bac8aab2432fc870253d420728a36c25951597a1 Author: chenrun1 AuthorDate: Sun Feb 25 12:51:24 2024 +0800

Re: [PR] cp:support -r recursive copies [nuttx-apps]

2024-02-25 Thread via GitHub
xiaoxiang781216 merged PR #2308: URL: https://github.com/apache/nuttx-apps/pull/2308 -- 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:

Re: [PR] Enhance board/board.mk compilation capabilities [nuttx]

2024-02-25 Thread via GitHub
crafcat7 commented on PR #11765: URL: https://github.com/apache/nuttx/pull/11765#issuecomment-1963267560 > @crafcat7 I thinking about another enhancement: we could simplify the boards commons! > > I think we could create a boards/common_drivers/ to move many sensors from

Re: [PR] rptun: remove notify_wait in remoteproc ops [nuttx]

2024-02-25 Thread via GitHub
CV-Bowen commented on PR #11754: URL: https://github.com/apache/nuttx/pull/11754#issuecomment-1963222975 @wyr8899 We should also modify `nuttx/openamp/0004-openamp-add-new-ops-notify_wait-support.patch` to pass CI. -- This is an automated message from the Apache Git Service. To respond

[PR] shced:sem: replace mutex with spinlock [nuttx]

2024-02-25 Thread via GitHub
TaiJuWu opened a new pull request, #11769: URL: https://github.com/apache/nuttx/pull/11769 ## Summary The overhead of spinlok is less than mutext (mutex need to call enter_critical section.) After this patch, `down_write_trylock` and `down_read_trylock` can be use in interrupt

Re: [PR] Enhance board/board.mk compilation capabilities [nuttx]

2024-02-25 Thread via GitHub
xiaoxiang781216 commented on PR #11765: URL: https://github.com/apache/nuttx/pull/11765#issuecomment-1963156065 could we put to common/drivers to avoid modifying the common Makefile again? @acassis -- This is an automated message from the Apache Git Service. To respond to the message,

(nuttx-website) branch asf-site updated: Publishing web: f355c37abb2c2dea4b5ff1c582aacf9520a34e3a docs: b0e382be5f6b797c640e966a73c604e8e188ec43

2024-02-25 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 eccb0aa82 Publishing web:

Re: [PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
mlyszczek commented on PR #11767: URL: https://github.com/apache/nuttx/pull/11767#issuecomment-1963045436 > @mlyszczek thank you! Actually I think you could move it from analog/ to sensors/ because it is more a sensor than an analog device Hmm... I think it may be closer to analog?

Re: [PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
acassis commented on PR #11767: URL: https://github.com/apache/nuttx/pull/11767#issuecomment-1963043367 No, I think you are right, the datasheet said it is a sensor: https://cdn.sparkfun.com/datasheets/Sensors/ForceFlex/hx711_english.pdf -- This is an automated message from the Apache

Re: [PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
acassis commented on PR #11767: URL: https://github.com/apache/nuttx/pull/11767#issuecomment-1963042887 @mlyszczek thank you! Actually I think you could move it from analog/ to sensors/ because it is more a sensor than an analog device -- This is an automated message from the Apache Git

Re: [PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
mlyszczek commented on PR #11767: URL: https://github.com/apache/nuttx/pull/11767#issuecomment-1963041424 Fixed that, and moved that driver from special/ to character/ since it's just a better match. -- This is an automated message from the Apache Git Service. To respond to the message,

Re: [PR] Enhance board/board.mk compilation capabilities [nuttx]

2024-02-25 Thread via GitHub
acassis commented on PR #11765: URL: https://github.com/apache/nuttx/pull/11765#issuecomment-1963040711 @crafcat7 I thinking about another enhancement: we could simplify the boards commons! I think we could create a boards/common_drivers/ to move many sensors from

Re: [PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
acassis commented on PR #11767: URL: https://github.com/apache/nuttx/pull/11767#issuecomment-1963037824 Please fix this warning/error: /home/runner/work/nuttx/nuttx/Documentation/components/drivers/special/hx711.rst:document isn't included in any toctree -- This is an automated

(nuttx) branch master updated: stm32h7/linum-stm32h753bi: Add USB console support

2024-02-25 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 b0e382be5f stm32h7/linum-stm32h753bi: Add USB

Re: [PR] stm32h7/linum-stm32h753bi: Add USB console support [nuttx]

2024-02-25 Thread via GitHub
acassis merged PR #11768: URL: https://github.com/apache/nuttx/pull/11768 -- 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:

Re: [I] REGEX wildcards in NSH [nuttx-apps]

2024-02-25 Thread via GitHub
patacongo commented on issue #2311: URL: https://github.com/apache/nuttx-apps/issues/2311#issuecomment-1963024202 A tiny REGEX is here: https://github.com/apache/nuttx/tree/master/libs/libc/regex This has undergone a lot of changes; I am not sure how compatible the current version

[I] REGEX wildcards in NSH [nuttx-apps]

2024-02-25 Thread via GitHub
patacongo opened a new issue, #2311: URL: https://github.com/apache/nuttx-apps/issues/2311 All NSH commands that accept a path name differ from the corresponding commands in other shells such as Bash in at least one important way: * Shells like Bash accept a REGEX pattern matching

(nuttx-apps) branch master updated: graphics/lvgl: remove unused code

2024-02-25 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 9e71031a0 graphics/lvgl: remove unused

Re: [PR] graphics/lvgl: remove unused code [nuttx-apps]

2024-02-25 Thread via GitHub
xiaoxiang781216 merged PR #2309: URL: https://github.com/apache/nuttx-apps/pull/2309 -- 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:

(nuttx-apps) branch master updated: sensor/lm75: fix C syntax error

2024-02-25 Thread hartmannathan
This is an automated email from the ASF dual-hosted git repository. hartmannathan 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 0cc42d6e4 sensor/lm75: fix C syntax

Re: [PR] sensor/lm75: fix C syntax error [nuttx-apps]

2024-02-25 Thread via GitHub
hartmannathan merged PR #2310: URL: https://github.com/apache/nuttx-apps/pull/2310 -- 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:

[PR] sensor/lm75: fix C syntax error [nuttx-apps]

2024-02-25 Thread via GitHub
JorgeGzm opened a new pull request, #2310: URL: https://github.com/apache/nuttx-apps/pull/2310 ## Summary Fix C syntax error ## Impact Fix build of LM75 library when not define the type of measure. ## Testing build lm75 project with stm32f401rc-rs485 board. ```

[PR] stm32h7/linum-stm32h753bi: Add USB console support [nuttx]

2024-02-25 Thread via GitHub
JorgeGzm opened a new pull request, #11768: URL: https://github.com/apache/nuttx/pull/11768 ## Summary This commit adds support to use NSH over USB without connecting an external USB/Serial adapter. ## Impact use console via usb ## Testing ``` $ sudo dmesg |

(nuttx-apps) branch master updated: dd:support "seek"

2024-02-25 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 bd1cc85ad dd:support "seek" bd1cc85ad is

Re: [PR] dd:support "seek" [nuttx-apps]

2024-02-25 Thread via GitHub
xiaoxiang781216 merged PR #2307: URL: https://github.com/apache/nuttx-apps/pull/2307 -- 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:

[PR] graphics/lvgl: remove unused code [nuttx-apps]

2024-02-25 Thread via GitHub
Junbo-Zheng opened a new pull request, #2309: URL: https://github.com/apache/nuttx-apps/pull/2309 ## Summary graphics/lvgl: remove unused code Since it has beed used from https://github.com/apache/nuttx-apps/blob/master/graphics/lvgl/CMakeLists.txt#L72-L74 ## Impact

Re: [PR] cp:support -r recursive copies [nuttx-apps]

2024-02-25 Thread via GitHub
crafcat7 commented on code in PR #2308: URL: https://github.com/apache/nuttx-apps/pull/2308#discussion_r1501803974 ## nshlib/nsh.h: ## @@ -960,7 +960,9 @@ int cmd_irqinfo(FAR struct nsh_vtbl_s *vtbl, int argc, FAR char **argv); int cmd_cat(FAR struct nsh_vtbl_s *vtbl, int

[PR] Add driver for hx711 weight scale ADC [nuttx]

2024-02-25 Thread via GitHub
mlyszczek opened a new pull request, #11767: URL: https://github.com/apache/nuttx/pull/11767 Patch adds driver to support hx711 adc designed for weigh scales. Example initialization is added in stm32f411-minimum board. Zero impact on other code. -- This is an automated message

(nuttx-apps) branch master updated: nshlib/prompt: extend NSH prompt string management

2024-02-25 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 31908b312 nshlib/prompt: extend NSH

Re: [PR] nshlib/prompt: add empty prompt string fallbacks [nuttx-apps]

2024-02-25 Thread via GitHub
xiaoxiang781216 merged PR #2300: URL: https://github.com/apache/nuttx-apps/pull/2300 -- 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: