[GitHub] [incubator-nuttx] raiden00pl commented on a diff in pull request #6593: boards: add initial support for stm32g071b-disco board

2022-07-10 Thread GitBox
raiden00pl commented on code in PR #6593: URL: https://github.com/apache/incubator-nuttx/pull/6593#discussion_r917373987 ## boards/arm/stm32f0l0g0/stm32g071b-disco/README.txt: ## @@ -0,0 +1,15 @@ +README +== + + This README discusses issues unique to NuttX configurations fo

[GitHub] [incubator-nuttx] anchao opened a new pull request, #6594: clock/settime: minor fix compile warning

2022-07-10 Thread GitBox
anchao opened a new pull request, #6594: URL: https://github.com/apache/incubator-nuttx/pull/6594 ## Summary clock/settime: minor fix compile warning clock/clock_settime.c: In function ‘clock_settime’: clock/clock_settime.c:120:45: warning: passing argument 1 of ‘clock_timek

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #6594: clock/settime: minor fix compile warning

2022-07-10 Thread GitBox
pkarashchenko merged PR #6594: URL: https://github.com/apache/incubator-nuttx/pull/6594 -- 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

[incubator-nuttx] branch master updated (b3e11b605a -> e5b3d52486)

2022-07-10 Thread pkarashchenko
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 b3e11b605a boards: add initial support for stm32l0538-disco add e5b3d52486 clock/settime: minor f

[GitHub] [incubator-nuttx] anchao commented on pull request #6562: net/tcp: fix regression of invalid update the rexmit_seq in buffer mode

2022-07-10 Thread GitBox
anchao commented on PR #6562: URL: https://github.com/apache/incubator-nuttx/pull/6562#issuecomment-1179772759 Hi @a-lunev > Are you confirming there is not the issue with rexmit_seq variable you explained above if #5589+#5598 are applied over 1ded8bb ? > Could you send TCP du

[GitHub] [incubator-nuttx-apps] Ouss4 commented on pull request #1217: Trigger clean and distclean for all directory which contain Makefile

2022-07-10 Thread GitBox
Ouss4 commented on PR #1217: URL: https://github.com/apache/incubator-nuttx-apps/pull/1217#issuecomment-1179773206 This was the old behavior, before filtering based on `.depend` and `.kconfig`. Do you want to bring it back? This will increase the execution time of multiple phases in buil

[GitHub] [incubator-nuttx] anchao commented on pull request #6562: net/tcp: fix regression of invalid update the rexmit_seq in buffer mode

2022-07-10 Thread GitBox
anchao commented on PR #6562: URL: https://github.com/apache/incubator-nuttx/pull/6562#issuecomment-1179773806 > You will find that if multiple segments are dropped consecutively, the recovery is very slow But I think this is another issue, this PR just restores the logic of the

[GitHub] [incubator-nuttx] anchao merged pull request #6591: Fix warning: (NET_TCP_NO_STACK && NET_USRSOCK_TCP) selects NET_TCP which has unmet direct dependencies (NET && SCHED_WORKQUEUE)

2022-07-10 Thread GitBox
anchao merged PR #6591: URL: https://github.com/apache/incubator-nuttx/pull/6591 -- 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

[incubator-nuttx] branch master updated: Fix warning: (NET_TCP_NO_STACK && NET_USRSOCK_TCP) selects NET_TCP which has unmet direct dependencies (NET && SCHED_WORKQUEUE)

2022-07-10 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 76ccbc9a73 Fix warning: (NET_TCP_NO_STA

[GitHub] [incubator-nuttx] anchao commented on pull request #6591: Fix warning: (NET_TCP_NO_STACK && NET_USRSOCK_TCP) selects NET_TCP which has unmet direct dependencies (NET && SCHED_WORKQUEUE)

2022-07-10 Thread GitBox
anchao commented on PR #6591: URL: https://github.com/apache/incubator-nuttx/pull/6591#issuecomment-1179775089 LGTM! -- 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 unsu

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #1217: Trigger clean and distclean for all directory which contain Makefile

2022-07-10 Thread GitBox
xiaoxiang781216 commented on PR #1217: URL: https://github.com/apache/incubator-nuttx-apps/pull/1217#issuecomment-1179781525 > This was the old behavior, before filtering based on `.depend` and `.kconfig`. Do you want to bring it back? This will increase the execution time of multiple phas

[GitHub] [incubator-nuttx] ALTracer commented on issue #5253: `df -h` not rendered correctly when LIBC_LONG_LONG is disabled

2022-07-10 Thread GitBox
ALTracer commented on issue #5253: URL: https://github.com/apache/incubator-nuttx/issues/5253#issuecomment-1179792919 I marked the mount_sprintf() private function as printf-like (which is supported on GCC and Clang), ```diff --- a/fs/mount/fs_procfs_mount.c +++ b/fs/mount/fs_proc

[GitHub] [incubator-nuttx] normanr commented on issue #5253: `df -h` not rendered correctly when LIBC_LONG_LONG is disabled

2022-07-10 Thread GitBox
normanr commented on issue #5253: URL: https://github.com/apache/incubator-nuttx/issues/5253#issuecomment-1179798960 The bl602 doesn't have large partitions (it's a tiny micro-controller). The issue comes from the way that the arguments are passed as variadic arguments. The calling site pa

[GitHub] [incubator-nuttx] mlyszczek commented on issue #5253: `df -h` not rendered correctly when LIBC_LONG_LONG is disabled

2022-07-10 Thread GitBox
mlyszczek commented on issue #5253: URL: https://github.com/apache/incubator-nuttx/issues/5253#issuecomment-1179826351 In libvsprintf.c we have ``` #ifndef CONFIG_HAVE_LONG_LONG # undef CONFIG_LIBC_LONG_LONG #endif ``` So it's safe to assume if LIBC_LONG_LONG is de

[GitHub] [incubator-nuttx] acassis merged pull request #6593: boards: add initial support for stm32g071b-disco board

2022-07-10 Thread GitBox
acassis merged PR #6593: URL: https://github.com/apache/incubator-nuttx/pull/6593 -- 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

[incubator-nuttx] branch master updated (76ccbc9a73 -> 2192b8df2b)

2022-07-10 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 76ccbc9a73 Fix warning: (NET_TCP_NO_STACK && NET_USRSOCK_TCP) selects NET_TCP which has unmet direct depend

[incubator-nuttx] 01/02: stm32g0: add support for USART3 and USART4

2022-07-10 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/incubator-nuttx.git commit 5c1c18af03a22dd35d1e938d98d3c1b56b8da20e Author: raiden00pl AuthorDate: Thu Jul 7 19:04:11 2022 +0200 stm

[incubator-nuttx] 02/02: boards: add initial support for stm32g071b-disco board

2022-07-10 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/incubator-nuttx.git commit 2192b8df2bf8813bc8d276e492eb26089e8e6821 Author: raiden00pl AuthorDate: Thu Jul 7 19:06:22 2022 +0200 boa

[incubator-nuttx-website] branch asf-site updated: Publishing web: 6758fc5efbbf5ed16c807ccdfb012d94d1db201a docs: 2192b8df2bf8813bc8d276e492eb26089e8e6821

2022-07-10 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/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 3c95783 Publishing web

[GitHub] [incubator-nuttx] a-lunev commented on pull request #6562: net/tcp: fix regression of invalid update the rexmit_seq in buffer mode

2022-07-10 Thread GitBox
a-lunev commented on PR #6562: URL: https://github.com/apache/incubator-nuttx/pull/6562#issuecomment-1179854226 > > You will find that if multiple segments are dropped consecutively, the recovery is very slow > > But I think this is another issue, Yes, based on your screenshot

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 opened a new pull request, #1218: build: Move the directory search from Make.defs to Makefile

2022-07-10 Thread GitBox
xiaoxiang781216 opened a new pull request, #1218: URL: https://github.com/apache/incubator-nuttx-apps/pull/1218 ## Summary to avoid the repetitive search since Make.defs is included in many Makefile ## Impact build ## Testing pass CI -- This is an automated messa

[GitHub] [incubator-nuttx] no1wudi opened a new pull request, #6595: vncserver: Correct rfb_keyevent_s definition

2022-07-10 Thread GitBox
no1wudi opened a new pull request, #6595: URL: https://github.com/apache/incubator-nuttx/pull/6595 ## Summary Refer to https://datatracker.ietf.org/doc/html/rfc6143, size of key is 4 byte. ## Impact vncserver ## Testing sim -- This is an automated message from

[GitHub] [incubator-nuttx] masayuki2009 commented on pull request #6586: Sabre6quad netknsh

2022-07-10 Thread GitBox
masayuki2009 commented on PR #6586: URL: https://github.com/apache/incubator-nuttx/pull/6586#issuecomment-1179959719 Let me disable the iperf app until the build system for apps is fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #6595: vncserver: Correct rfb_keyevent_s definition

2022-07-10 Thread GitBox
xiaoxiang781216 merged PR #6595: URL: https://github.com/apache/incubator-nuttx/pull/6595 -- 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

[incubator-nuttx] branch master updated (2192b8df2b -> e23bcb0e81)

2022-07-10 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/incubator-nuttx.git from 2192b8df2b boards: add initial support for stm32g071b-disco board add e23bcb0e81 vncserver: Correct r

[GitHub] [incubator-nuttx] no1wudi opened a new pull request, #6596: vncserver enhancement

2022-07-10 Thread GitBox
no1wudi opened a new pull request, #6596: URL: https://github.com/apache/incubator-nuttx/pull/6596 ## Summary * Support keyboard driver * Init global vnc session structure in up_fbinitialize ## Impact vncserver only ## Testing sim:vncserver -- This is an automated me