[GitHub] [nuttx-apps] wengzhe opened a new pull request, #1791: netutils/dhcpc: Set BOOTP BROADCAST flag when IPFORWARD is enabled

2023-06-13 Thread via GitHub
wengzhe opened a new pull request, #1791: URL: https://github.com/apache/nuttx-apps/pull/1791 ## Summary Socket binded to `INADDR_ANY` is not intended to receive unicast traffic before being fully configured, at least dhclient configured with socket-only won't do so on Linux and BSDs

[nuttx] branch master updated: usrsock_rpmsg_server: fix poll recursive when revent POLLHUP or POLLERR

2023-06-13 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 aa43f6ff1a usrsock_rpmsg_server: fix poll

[GitHub] [nuttx] xiaoxiang781216 merged pull request #9520: usrsock_rpmsg_server: fix poll recursive when revent POLLHUP or POLLERR

2023-06-13 Thread via GitHub
xiaoxiang781216 merged PR #9520: URL: https://github.com/apache/nuttx/pull/9520 -- 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:

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #9516: Assert: Optimizing assert handling

2023-06-13 Thread via GitHub
pkarashchenko commented on code in PR #9516: URL: https://github.com/apache/nuttx/pull/9516#discussion_r1227625607 ## boards/arm/cxd56xx/common/src/cxd56_crashdump.c: ## @@ -100,7 +100,7 @@ static void copy_reverse(stack_word_t *dest, stack_word_t *src, int size) void

[GitHub] [nuttx] zyfeier opened a new pull request, #9524: boards: remove unnecessary FAR

2023-06-13 Thread via GitHub
zyfeier opened a new pull request, #9524: URL: https://github.com/apache/nuttx/pull/9524 ## Summary Remove the unnecessary FAR added in #9516 ## Impact NA ## Testing CI Pass -- This is an automated message from the Apache Git Service. To respond to the

[GitHub] [nuttx-apps] siryang2006 opened a new pull request, #1792: testing/ostest: adjust PTHREAD_CLEANUP_STACKSIZE with nuttx project

2023-06-13 Thread via GitHub
siryang2006 opened a new pull request, #1792: URL: https://github.com/apache/nuttx-apps/pull/1792 VELAPLATFO-8233 in project nuttx "remove PTHREAD_CLEANUP, and use PTHREAD_CLEANUP_STACKSIZE to enable or disable interfaces pthread_cleanup_push() and pthread_cleanup_pop()", apps

[GitHub] [nuttx] siryang2006 opened a new pull request, #9527: sched/tls: remove PTHREAD_CLEANUP from Kconfig

2023-06-13 Thread via GitHub
siryang2006 opened a new pull request, #9527: URL: https://github.com/apache/nuttx/pull/9527 VELAPLATFO-8233 use PTHREAD_CLEANUP_STACKSIZE to enable or disable interfaces pthread_cleanup_push() and pthread_cleanup_pop(). reasons:(1)same as TLS_TASK_NELEM (2)it is no need to use two

[GitHub] [nuttx] acassis merged pull request #9524: boards: remove unnecessary FAR

2023-06-13 Thread via GitHub
acassis merged PR #9524: URL: https://github.com/apache/nuttx/pull/9524 -- 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:

[GitHub] [nuttx] acassis commented on pull request #9523: esp32: initializing a display should not initialize the framebuffer as well

2023-06-13 Thread via GitHub
acassis commented on PR #9523: URL: https://github.com/apache/nuttx/pull/9523#issuecomment-1589240049 @robertalexa2000 I think the issue is because fb_register is already called in your board bring-up: esp32-sparrow-kit/src/esp32_bringup.c: ret = fb_register(0, 0); I think you

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #9528: sched/group: Ensure that the setting of tg_members if safe in SMP

2023-06-13 Thread via GitHub
pkarashchenko commented on code in PR #9528: URL: https://github.com/apache/nuttx/pull/9528#discussion_r1228126760 ## sched/group/group_join.c: ## @@ -208,9 +218,12 @@ int group_join(FAR struct pthread_tcb_s *tcb) { return ret; } +#else + flags =

[GitHub] [nuttx] zyfeier opened a new pull request, #9528: sched/group: Ensure that the setting of tg_members if safe in SMP

2023-06-13 Thread via GitHub
zyfeier opened a new pull request, #9528: URL: https://github.com/apache/nuttx/pull/9528 ## Summary Fixed ltp_stress_mqueues_multi_send_rev_1 test issue: In SMP mode, tg_members will operate on different cores. Adding interrupt locking operations ensures that the operation of

[GitHub] [nuttx] xiaoxiang781216 merged pull request #9518: sim/posix/sim_hostusrsock: process host network syscall with critical…

2023-06-13 Thread via GitHub
xiaoxiang781216 merged PR #9518: URL: https://github.com/apache/nuttx/pull/9518 -- 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] branch master updated: sim/posix/sim_hostusrsock: process host network syscall with critical section

2023-06-13 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 272e62018a sim/posix/sim_hostusrsock: process

[nuttx] branch master updated: boards: remove unnecessary FAR

2023-06-13 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 4033a4a2a4 boards: remove unnecessary FAR

[GitHub] [nuttx] patacongo commented on issue #9531: Can thread holding spinlock be blocked?

2023-06-13 Thread via GitHub
patacongo commented on issue #9531: URL: https://github.com/apache/nuttx/issues/9531#issuecomment-1590009468 PART II > 1. sched_lock call enter_critical_section internally Perhaps that the critical section might be replaced with something like spin_lock_irqsave(). Most of the

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #9525: xtensa/esp32s3: Add USB OTG device driver

2023-06-13 Thread via GitHub
pkarashchenko commented on code in PR #9525: URL: https://github.com/apache/nuttx/pull/9525#discussion_r1228737265 ## arch/xtensa/src/esp32s3/esp32s3_otg_device.c: ## @@ -0,0 +1,5847 @@ +/ + *

[GitHub] [nuttx] acassis merged pull request #9529: pca9555: fix const correctness of pin set parameters

2023-06-13 Thread via GitHub
acassis merged PR #9529: URL: https://github.com/apache/nuttx/pull/9529 -- 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:

[GitHub] [nuttx] acassis commented on a diff in pull request #9530: Smartcard for stm32h7 uart

2023-06-13 Thread via GitHub
acassis commented on code in PR #9530: URL: https://github.com/apache/nuttx/pull/9530#discussion_r1228585795 ## include/nuttx/serial/tioctl.h: ## @@ -202,6 +202,23 @@ #define TIOCSLINID _TIOC(0x0037) /* Master send one LIN header with specified LIN identifier: uint8_t

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #9530: Smartcard for stm32h7 uart

2023-06-13 Thread via GitHub
pkarashchenko commented on code in PR #9530: URL: https://github.com/apache/nuttx/pull/9530#discussion_r1228678794 ## arch/arm/src/stm32h7/stm32_serial.c: ## @@ -2660,6 +2719,201 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long arg) break; #endif

[GitHub] [nuttx] pussuw commented on pull request #9486: riscv/fpu: Implement correct lazy-FPU functionality

2023-06-13 Thread via GitHub
pussuw commented on PR #9486: URL: https://github.com/apache/nuttx/pull/9486#issuecomment-1589835414 > @pussuw could you rebase the change? Yes I will do it tomorrow -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7202: Add support for the loading of ET_DYN objects

2023-06-13 Thread via GitHub
xiaoxiang781216 commented on PR #7202: URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1589507928 @acassis please ignore the warning which doesn't block the ci. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[nuttx] branch master updated (84f4cf9b9d -> 59c01ea05d)

2023-06-13 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 84f4cf9b9d riscv/vfork: Replace jal with call for long jump add 59c01ea05d netfilter: add NF_IP_xxx definition

[GitHub] [nuttx] xiaoxiang781216 merged pull request #9522: netfilter: add NF_IP_xxx definition

2023-06-13 Thread via GitHub
xiaoxiang781216 merged PR #9522: URL: https://github.com/apache/nuttx/pull/9522 -- 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:

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #9499: debug: change generate debug symbols default enable

2023-06-13 Thread via GitHub
xiaoxiang781216 commented on code in PR #9499: URL: https://github.com/apache/nuttx/pull/9499#discussion_r1228520984 ## Kconfig: ## @@ -1904,7 +1904,7 @@ config HEAP_COLORATION config DEBUG_SYMBOLS bool "Generate Debug Symbols" - default n + default y

[GitHub] [nuttx] patacongo commented on a diff in pull request #9528: sched/group: Ensure that the setting of tg_members if safe in SMP

2023-06-13 Thread via GitHub
patacongo commented on code in PR #9528: URL: https://github.com/apache/nuttx/pull/9528#discussion_r1228414332 ## sched/group/group_join.c: ## @@ -208,9 +218,12 @@ int group_join(FAR struct pthread_tcb_s *tcb) { return ret; } +#else + flags =

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #9528: sched/group: Ensure that the setting of tg_members if safe in SMP

2023-06-13 Thread via GitHub
xiaoxiang781216 commented on code in PR #9528: URL: https://github.com/apache/nuttx/pull/9528#discussion_r1228516350 ## sched/group/group_join.c: ## @@ -208,9 +218,12 @@ int group_join(FAR struct pthread_tcb_s *tcb) { return ret; } +#else + flags =

[GitHub] [nuttx] vbenso commented on pull request #6992: WS2812 LED driver using ESP32's RMT peripheral

2023-06-13 Thread via GitHub
vbenso commented on PR #6992: URL: https://github.com/apache/nuttx/pull/6992#issuecomment-1589601379 > Hey there @vbenso :-) Did you manage do implement the updates? How can I help? I have ESP32 + WS2812 setup ready for testing / help in development :-) I thas been a while since I

[GitHub] [nuttx] xiaoxiang781216 commented on issue #9531: Can thread holding spinlock be blocked?

2023-06-13 Thread via GitHub
xiaoxiang781216 commented on issue #9531: URL: https://github.com/apache/nuttx/issues/9531#issuecomment-1589785157 we are trying to call sched_lock in critical section(could be for spin lock), but it isn't very easy because: 1. sched_lock call enter_critical_section internally 2.

[GitHub] [nuttx] xiaoxiang781216 closed pull request #8271: fs/rpmsgfs: return ENOTTY to vfs to do cmd operate

2023-06-13 Thread via GitHub
xiaoxiang781216 closed pull request #8271: fs/rpmsgfs: return ENOTTY to vfs to do cmd operate URL: https://github.com/apache/nuttx/pull/8271 -- 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] slorquet opened a new pull request, #9530: Smartcard for stm32h7 uart

2023-06-13 Thread via GitHub
slorquet opened a new pull request, #9530: URL: https://github.com/apache/nuttx/pull/9530 ## Summary This pull request is intended to show my progress into developing smartcard support for stm32h7. It is an experimental draft for comment and review. ## Testing A test app is

[GitHub] [nuttx] cederom commented on pull request #6992: WS2812 LED driver using ESP32's RMT peripheral

2023-06-13 Thread via GitHub
cederom commented on PR #6992: URL: https://github.com/apache/nuttx/pull/6992#issuecomment-1589723713 Thank you @vbenso for the feedback and Your works :-) * I am working on a project right now based on ESP32 that will use WS2812 and I have custom hardware ready for testing the code (did

[nuttx] branch master updated: riscv/vfork: Replace jal with call for long jump

2023-06-13 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 84f4cf9b9d riscv/vfork: Replace jal with call

[GitHub] [nuttx] patacongo commented on pull request #7202: Add support for the loading of ET_DYN objects

2023-06-13 Thread via GitHub
patacongo commented on PR #7202: URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1589488380 > Why is it failing to find arm-nuttx-eabi-gcc ? arm-nuttx-eabi-gcc is the "buildroot" toolchain (https://bitbucket.org/nuttx/buildroot/src/master/) which you probably do not have

[nuttx-apps] branch releases/12.2 created (now ec63217b4)

2023-06-13 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch releases/12.2 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git at ec63217b4 nshlib: disable nsh error print if NSH_DISABLE_ERROR_PRINT enabled No new revisions were

[nuttx] branch releases/12.2 created (now 272e62018a)

2023-06-13 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch releases/12.2 in repository https://gitbox.apache.org/repos/asf/nuttx.git at 272e62018a sim/posix/sim_hostusrsock: process host network syscall with critical section No new revisions

[GitHub] [nuttx] patacongo commented on a diff in pull request #9499: debug: change generate debug symbols default enable

2023-06-13 Thread via GitHub
patacongo commented on code in PR #9499: URL: https://github.com/apache/nuttx/pull/9499#discussion_r1228392480 ## Kconfig: ## @@ -1904,7 +1904,7 @@ config HEAP_COLORATION config DEBUG_SYMBOLS bool "Generate Debug Symbols" - default n + default y Review

[GitHub] [nuttx] patacongo commented on a diff in pull request #9528: sched/group: Ensure that the setting of tg_members if safe in SMP

2023-06-13 Thread via GitHub
patacongo commented on code in PR #9528: URL: https://github.com/apache/nuttx/pull/9528#discussion_r1228411789 ## sched/group/group_join.c: ## @@ -208,9 +218,12 @@ int group_join(FAR struct pthread_tcb_s *tcb) { return ret; } +#else + flags =

[GitHub] [nuttx] acassis commented on pull request #7202: Add support for the loading of ET_DYN objects

2023-06-13 Thread via GitHub
acassis commented on PR #7202: URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1589472859 @xiaoxiang781216 : ``` Configuration/Tool: c5471evm/nsh,CONFIG_ARM_TOOLCHAIN_GNU_EABI

[GitHub] [nuttx] slorquet opened a new pull request, #9529: pca9555: fix const correctness of pin set parameters

2023-06-13 Thread via GitHub
slorquet opened a new pull request, #9529: URL: https://github.com/apache/nuttx/pull/9529 ## Summary Make sure the pin sets are marked const ## Impact Less warnings ## Testing New code working as expected on our test configs -- This is an automated message from the

[GitHub] [nuttx] patacongo opened a new issue, #9531: Can thread holding spinlock be blocked?

2023-06-13 Thread via GitHub
patacongo opened a new issue, #9531: URL: https://github.com/apache/nuttx/issues/9531 @MasayukiIshikawa @masayuki2009 I was just looking at the implementation of spin_lock_irqsave(). spin_lock_irqsave() basically just: 1. Calls irqsave() to disable local interrupts, and 2.

[GitHub] [nuttx] wangchen61698 opened a new pull request, #9534: netdb/dns: fix dns wrong response ID error

2023-06-13 Thread via GitHub
wangchen61698 opened a new pull request, #9534: URL: https://github.com/apache/nuttx/pull/9534 ## Summary In every dns query, we use the new socket to avoid receiving last response ID ## Impact netdb/dns ## Testing checking UDP send local port is different when we do every

[nuttx-website] branch asf-site updated: Publishing web: bedd222ce647cc428f1f896ea77db286eb1bfbce docs: 43fec5dd532e308f67a275749bfbac019dec285e

2023-06-13 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 4156b4b1 Publishing web:

[GitHub] [nuttx] GooTal opened a new issue, #9532: Questions about netutils running rv-virt:netnsh64 on branch releases/12.1

2023-06-13 Thread via GitHub
GooTal opened a new issue, #9532: URL: https://github.com/apache/nuttx/issues/9532 Hi, i tested some commands about netutils and found something not working as expected. Are these bugs? Did i used these cmds with the right approach? Thanks a lot. I run these tests on

[nuttx] branch master updated: sched/tls: remove PTHREAD_CLEANUP from Kconfig

2023-06-13 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 29a336d6a8 sched/tls: remove PTHREAD_CLEANUP

[GitHub] [nuttx] xiaoxiang781216 merged pull request #9527: sched/tls: remove PTHREAD_CLEANUP from Kconfig

2023-06-13 Thread via GitHub
xiaoxiang781216 merged PR #9527: URL: https://github.com/apache/nuttx/pull/9527 -- 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:

[GitHub] [nuttx] wengzhe opened a new pull request, #9533: arch/sim: Support more sockopts on native socket

2023-06-13 Thread via GitHub
wengzhe opened a new pull request, #9533: URL: https://github.com/apache/nuttx/pull/9533 ## Summary Add more options to sockopts on native socket ## Impact sim_hostusrsock ## Testing UDP with `SO_BROADCAST` works now. -- This is an automated message from the

[GitHub] [nuttx] SPRESENSE opened a new pull request, #9535: boards: spresense: Fix boards implements for supporting PM System

2023-06-13 Thread via GitHub
SPRESENSE opened a new pull request, #9535: URL: https://github.com/apache/nuttx/pull/9535 ## Summary Fix spresense boards code for supporting PM System. ## Impact Spresense boards only. ## Testing Spresense boards with LTE. -- This is an automated