masayuki2009 commented on PR #7129:
URL: https://github.com/apache/incubator-nuttx/pull/7129#issuecomment-1251942407
@xiaoxiang781216
The latest PR looks fine.
```
nsh> iperf -s
IP: 10.0.2.15
mode=tcp-server sip=10.0.2.15:5001,dip=0.0.0.0:5001, interval=3, time
masayuki2009 merged PR #7129:
URL: https://github.com/apache/incubator-nuttx/pull/7129
--
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.
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
from a2deaa73c3 arch: risc-v: Remove FPU support from qemu-rv
new 493152a45f fs/eventfd: Remove the extra s
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 079a6fa6cc1572be82e3048974db7c58dd80a425
Author: Xiang Xiao
AuthorDate: Sun Sep 18 18:49:12 2022 +0800
a
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 493152a45f12ce66598eb4b4b99fb74138089a77
Author: Xiang Xiao
AuthorDate: Sun Sep 18 16:46:53 2022 +0800
f
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit e44ff7d49febffc2853d7c70d94337c6f45f9295
Author: Xiang Xiao
AuthorDate: Sun Sep 18 17:25:05 2022 +0800
a
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 17ac85eb0a6dd43f9c185d7ffebae1661707969f
Author: Xiang Xiao
AuthorDate: Sun Sep 18 18:13:11 2022 +0800
a
This is an automated email from the ASF dual-hosted git repository.
masayuki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit ef43283c67d358e654948e97ce78a524ca1c221d
Author: Xiang Xiao
AuthorDate: Sun Sep 18 17:42:16 2022 +0800
a
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/incubator-nuttx.git
commit 9afb6540dca26cd4c734cff91e72c59a7721cf2a
Author: Xiang Xiao
AuthorDate: Fri Sep 16 14:53:46 2022 +0800
lib
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/incubator-nuttx.git
from 079a6fa6cc arch/armv7[a|r]: Implement up_affinity_irq
new 8df223a1ef libc: Add LIBC prefix to MEM_FD_VFS
anchao merged PR #7117:
URL: https://github.com/apache/incubator-nuttx/pull/7117
--
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...@nut
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/incubator-nuttx.git
commit 8df223a1efe588e282efc825a2fa8e8b0e1bae08
Author: Xiang Xiao
AuthorDate: Fri Sep 16 14:33:09 2022 +0800
lib
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/incubator-nuttx.git
commit db518bf0dfbaeae3d10d3c7656e4be39e6176ef9
Author: Xiang Xiao
AuthorDate: Fri Sep 16 14:24:55 2022 +0800
fs:
slorquet opened a new issue, #7138:
URL: https://github.com/apache/incubator-nuttx/issues/7138
Hi,
The stm32h7 does not properly drain the UARTs on close().
The console works perfectly and hides the problem, because nsh keeps the
UART opened indefinitely.
However, a custom p
pkarashchenko commented on code in PR #7124:
URL: https://github.com/apache/incubator-nuttx/pull/7124#discussion_r975207969
##
net/socket/getsockopt.c:
##
@@ -260,14 +261,90 @@ static int psock_socketlevel_option(FAR struct socket
*psock, int option,
break;
#endif
+
pkarashchenko commented on code in PR #7131:
URL: https://github.com/apache/incubator-nuttx/pull/7131#discussion_r975210780
##
include/sys/poll.h:
##
@@ -82,6 +82,16 @@
#define POLLSOCK (0x80)
#define POLLMASK (0xC0)
+/* poll_notify option definitions */
+
+#define P
pkarashchenko commented on PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#issuecomment-1252205649
Seems to be a "breaking change" due to default value change for
`Auto-monitor keepalive by`
--
This is an automated message from the Apache Git Service.
To respond to the
pkarashchenko commented on code in PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#discussion_r975221624
##
drivers/timers/watchdog.c:
##
@@ -186,26 +223,49 @@ static void watchdog_automonitor_idle(FAR struct
pm_callback_s *cb,
#endif
#ifdef CONFIG_WATCHD
pkarashchenko commented on code in PR #7114:
URL: https://github.com/apache/incubator-nuttx/pull/7114#discussion_r975262565
##
tools/ci/runcodechecker.sh:
##
@@ -93,3 +116,11 @@ done
if $NEEDSTART; then
start_server
fi
+
+if $NEEDKILL; then
+ kill_server
+fi
+
+if $NEEDCOM
pkarashchenko commented on code in PR #1319:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/1319#discussion_r975269217
##
nshlib/nsh_proccmds.c:
##
@@ -758,3 +769,114 @@ int cmd_usleep(FAR struct nsh_vtbl_s *vtbl, int argc,
char **argv)
return OK;
}
#endif
+
+/*
pkarashchenko commented on code in PR #6318:
URL: https://github.com/apache/incubator-nuttx/pull/6318#discussion_r975271022
##
sched/semaphore/sem_holder.c:
##
@@ -489,117 +411,52 @@ static int nxsem_restoreholderprio(FAR struct
semholder_s *pholder,
nxsem_freeholder(sem
acassis commented on issue #7138:
URL:
https://github.com/apache/incubator-nuttx/issues/7138#issuecomment-1252256553
Hi @slorquet the H7 drivers derives from F7, so I should starting comparing
the Reference Manual from both chip to spot some differences. I know a company
here in Brazil tha
slorquet commented on issue #7138:
URL:
https://github.com/apache/incubator-nuttx/issues/7138#issuecomment-1252262855
It's quite related to accurate implementation details, eg if an app sends a
frame and waits for an answer, this wait will allow the transmission.
My case is touchy si
xiaoxiang781216 commented on PR #7131:
URL: https://github.com/apache/incubator-nuttx/pull/7131#issuecomment-1252289466
> Do we have good test coverage for this change? I see that many places did
not check `fd->sem` count before posting, but now in common function it is
always checked. The
CV-Bowen commented on code in PR #7131:
URL: https://github.com/apache/incubator-nuttx/pull/7131#discussion_r975315293
##
include/sys/poll.h:
##
@@ -82,6 +82,16 @@
#define POLLSOCK (0x80)
#define POLLMASK (0xC0)
+/* poll_notify option definitions */
+
+#define POLL_N
CV-Bowen commented on code in PR #7131:
URL: https://github.com/apache/incubator-nuttx/pull/7131#discussion_r975316188
##
fs/vfs/fs_poll.c:
##
@@ -276,6 +277,62 @@ static inline int poll_teardown(FAR struct pollfd *fds,
nfds_t nfds,
* Public Functions
**
vshymanskyy opened a new issue, #7139:
URL: https://github.com/apache/incubator-nuttx/issues/7139
The device (ESP32, TTGO T-Call) is not getting an IP address when using PPP.
Enabling `CONFIG_DEBUG_NET_INFO` gives me: `lcp_rx: We only support default
or all zeros for ACCM` which repea
xiaoxiang781216 opened a new pull request, #7140:
URL: https://github.com/apache/incubator-nuttx/pull/7140
## Summary
and move the declaration to arm_internal.h to avoid the duplication
## Impact
Code refactor only
## Testing
Pass CI
--
This is an automated messa
GUIDINGLI opened a new pull request, #7141:
URL: https://github.com/apache/incubator-nuttx/pull/7141
## Summary
mmu: mmu enable should after enable SMP
## Impact
SMP
## Testing
VELA
--
This is an automated message from the Apache Git Service.
To respo
klmchp opened a new pull request, #7142:
URL: https://github.com/apache/incubator-nuttx/pull/7142
## Summary
1. add SAMA5D2 support for SAMA5 xdma driver.
2. fix xdma configuration bug and some typo
## Impact
N/A
## Testing
Verified on SAMA5D2 platform
--
This is an
W-Mai commented on PR #7114:
URL: https://github.com/apache/incubator-nuttx/pull/7114#issuecomment-1252356765
`tools/ci/testlist/codechecker.dat`
Select a random set of targets to check. If you need to check a specific
target, write the target list in this file.
Make sure that the comp
GUIDINGLI commented on PR #7113:
URL: https://github.com/apache/incubator-nuttx/pull/7113#issuecomment-1252358385
@masayuki2009
I will separate the PR to check the error, here is the first:
https://github.com/apache/incubator-nuttx/pull/7141
--
This is an automated message from the
xiaoxiang781216 commented on code in PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#discussion_r975403344
##
drivers/timers/watchdog.c:
##
@@ -144,17 +148,50 @@ static int watchdog_automonitor_capture(int irq, FAR void
*context,
return 0;
}
+#elif defi
xiaoxiang781216 commented on code in PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#discussion_r975403684
##
drivers/timers/watchdog.c:
##
@@ -186,26 +223,49 @@ static void watchdog_automonitor_idle(FAR struct
pm_callback_s *cb,
#endif
#ifdef CONFIG_WATC
xiaoxiang781216 commented on code in PR #7124:
URL: https://github.com/apache/incubator-nuttx/pull/7124#discussion_r975408249
##
net/socket/getsockopt.c:
##
@@ -260,14 +261,90 @@ static int psock_socketlevel_option(FAR struct socket
*psock, int option,
break;
#endif
xiaoxiang781216 commented on PR #7113:
URL: https://github.com/apache/incubator-nuttx/pull/7113#issuecomment-1252409170
Let drop:
mmu: mmu enable should after enable SMP
from this PR.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log
xiaoxiang781216 opened a new pull request, #7143:
URL: https://github.com/apache/incubator-nuttx/pull/7143
## Summary
defined here:
https://pubs.opengroup.org/onlinepubs/009695399/basedefs/netinet/in.h.html
## Impact
New macro
## Testing
--
This is an automat
GUIDINGLI opened a new pull request, #7144:
URL: https://github.com/apache/incubator-nuttx/pull/7144
## Summary
armv7-a/r: only primary can do invalidate_dcache_all() at startting
Non-zero cpu will invalidate cpu0's cache, that will caused cpu0's data
mismatch, and then sys
GUIDINGLI commented on PR #7113:
URL: https://github.com/apache/incubator-nuttx/pull/7113#issuecomment-1252432831
@masayuki2009
Can you help to check, which caused error ?
https://github.com/apache/incubator-nuttx/pull/7141
https://github.com/apache/incubator-nuttx/pull/7144
https
xiaoxiang781216 commented on PR #7140:
URL: https://github.com/apache/incubator-nuttx/pull/7140#issuecomment-1252488421
Please ignore the false alarm:
Error:
/home/runner/work/incubator-nuttx/incubator-nuttx/nuttx/arch/arm/src/phy62xx/irq.c:197:5:
error: Mixed case identifier found
--
vshymanskyy opened a new issue, #7145:
URL: https://github.com/apache/incubator-nuttx/issues/7145
DNS with PPP connections only work if `CONFIG_NETDB_DNSSERVER_IPv4ADDR` is
manually set to DNS ip address (i.e. `0x08080808` for Google DNS).
IPCP could be used to configure network-provided
Junbo-Zheng commented on code in PR #1319:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/1319#discussion_r975544215
##
nshlib/nsh_proccmds.c:
##
@@ -758,3 +769,114 @@ int cmd_usleep(FAR struct nsh_vtbl_s *vtbl, int argc,
char **argv)
return OK;
}
#endif
+
+/***
Junbo-Zheng commented on code in PR #1319:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/1319#discussion_r975544624
##
nshlib/nsh_proccmds.c:
##
@@ -758,3 +769,114 @@ int cmd_usleep(FAR struct nsh_vtbl_s *vtbl, int argc,
char **argv)
return OK;
}
#endif
+
+/***
Junbo-Zheng commented on code in PR #1319:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/1319#discussion_r975545738
##
nshlib/nsh.h:
##
@@ -1204,6 +1204,10 @@ int cmd_pmconfig(FAR struct nsh_vtbl_s *vtbl, int argc,
char **argv);
int cmd_usleep(FAR struct nsh_vtbl
xiaoxiang781216 merged PR #7142:
URL: https://github.com/apache/incubator-nuttx/pull/7142
--
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-unsubs
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/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 711681a90d add SAMA5D2 support for s
pkarashchenko commented on code in PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#discussion_r975608048
##
drivers/timers/watchdog.c:
##
@@ -144,17 +148,50 @@ static int watchdog_automonitor_capture(int irq, FAR void
*context,
return 0;
}
+#elif define
michallenc opened a new pull request, #7146:
URL: https://github.com/apache/incubator-nuttx/pull/7146
## Summary
This commit supplements commit 7d877fbb. External sync mode is now disabled
if XBAR connection fails and config options are used directly in sync_src
variable and passed to XB
xiaoxiang781216 commented on PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#issuecomment-1252698017
> Seems to be a "breaking change" due to default value change for
`Auto-monitor keepalive by`
But, the final result is same: the ping interval is still half of timeo
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 665e05ec48b3e16bd7fe53c700bf6cb8dacd8318
Author: Xiang Xiao
AuthorDate: Sun Sep 18 20:38:32 2022 +0800
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 1eefec4db3876305860eb57b91f454322d44a74a
Author: Xiang Xiao
AuthorDate: Sun Sep 18 10:47:19 2022 +0800
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 47d2859f853945651ddfadeaadac6f20df511834
Author: Xiang Xiao
AuthorDate: Sun Sep 18 10:18:40 2022 +0800
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit ba20cadd6529a46741541a15c847a04d688e98b9
Author: Xiang Xiao
AuthorDate: Mon Sep 19 05:28:49 2022 +0800
pkarashchenko commented on code in PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126#discussion_r975608048
##
drivers/timers/watchdog.c:
##
@@ -144,17 +148,50 @@ static int watchdog_automonitor_capture(int irq, FAR void
*context,
return 0;
}
+#elif define
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
from 711681a90d add SAMA5D2 support for sam_xdma driver
new 47d2859f85 watchdog: Rename WATCHDOG_AUTOM
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 03f45a124ae309bce148a2728584db4de0f0a1fd
Author: Xiang Xiao
AuthorDate: Sun Sep 18 12:08:13 2022 +0800
pkarashchenko merged PR #7126:
URL: https://github.com/apache/incubator-nuttx/pull/7126
--
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
xiaoxiang781216 opened a new pull request, #7147:
URL: https://github.com/apache/incubator-nuttx/pull/7147
## Summary
Code refactor
## Impact
Minor
## Testing
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on t
xiaoxiang781216 merged PR #7146:
URL: https://github.com/apache/incubator-nuttx/pull/7146
--
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-unsubs
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/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 11cf3de776 imxrt: disable PWM synchr
dependabot[bot] opened a new pull request, #7148:
URL: https://github.com/apache/incubator-nuttx/pull/7148
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.4 to 1.26.5.
Release notes
Sourced from https://github.com/urllib3/urllib3/releases";>urllib3's
releases.
This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/pip/Documentation/urllib3-1.26.5
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
at da6db5191a build(deps): bump urllib3 from 1.26.4 to 1.26.5 in
/Docu
masayuki2009 commented on PR #7144:
URL: https://github.com/apache/incubator-nuttx/pull/7144#issuecomment-1253008251
@GUIDINGLI
The sabre-6quad:smp (real board) stopped during boot.
--
This is an automated message from the Apache Git Service.
To respond to the message, please l
masayuki2009 commented on PR #7141:
URL: https://github.com/apache/incubator-nuttx/pull/7141#issuecomment-1253009402
@GUIDINGLI
This PR works with the sabre-6quad board.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
masayuki2009 commented on PR #7113:
URL: https://github.com/apache/incubator-nuttx/pull/7113#issuecomment-1253015380
@GUIDINGLI
The latest PR works with the sabre-6quad board.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to G
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/incubator-nuttx-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 7f9b907 Publishing web
xiaoxiang781216 merged PR #7141:
URL: https://github.com/apache/incubator-nuttx/pull/7141
--
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-unsubs
xiaoxiang781216 commented on PR #7141:
URL: https://github.com/apache/incubator-nuttx/pull/7141#issuecomment-1253101335
thanks @masayuki2009 , let's merge the good patch first.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub a
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/incubator-nuttx.git
from 11cf3de776 imxrt: disable PWM synchronization when XBAR connection
fails
add 25d5cd11a1 mmu: mmu ena
xiaoxiang781216 commented on PR #7113:
URL: https://github.com/apache/incubator-nuttx/pull/7113#issuecomment-1253102272
@GUIDINGLI please rebase the patch to fix the conflict.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub an
pkarashchenko commented on code in PR #1319:
URL:
https://github.com/apache/incubator-nuttx-apps/pull/1319#discussion_r976090230
##
nshlib/nsh_proccmds.c:
##
@@ -45,6 +47,15 @@
# define CONFIG_NSH_PROC_MOUNTPOINT "/proc"
#endif
+#ifndef CONFIG_NSH_DISABLE_UPTIME
+ #ifndef
71 matches
Mail list logo