[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345487814 > @xiaoxiang781216 should we ignore macOS build failures? I don't know why macOS build stuck, let' restart the build to try again. -- This is an automated message from the A

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7817: risc-v/es32c3: improve passthrough performance by iob offload

2022-12-11 Thread GitBox
xiaoxiang781216 merged PR #7817: URL: https://github.com/apache/nuttx/pull/7817 -- 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...@nutt

[nuttx] branch master updated: risc-v/es32c3: improve passthrough performance by iob offload

2022-12-11 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 61563d6004 risc-v/es32c3: improve passthrough

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7525: Improvements in TCP connections allocation.

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7525: URL: https://github.com/apache/nuttx/pull/7525#discussion_r1045191991 ## net/tcp/tcp_conn.c: ## @@ -549,16 +549,25 @@ FAR struct tcp_conn_s *tcp_alloc_conn(void) if (dq_peek(&g_free_tcp_connections) == NULL) { +#if CONFIG_

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345500442 @pkarashchenko I found the root cause why macOS stuck, it should work now. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [nuttx] gustavonihei commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
gustavonihei commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345501870 Sorry for all the trouble my latest PRs may have caused. But changing the prebuilt dir will bring back the #7636 issue. The prebuilts should be isolated in their own out o

[GitHub] [nuttx] gustavonihei commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
gustavonihei commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345517573 https://github.com/apache/nuttx/blob/61563d6004fe92ae50d567bc4f81c81f60d8c757/.github/workflows/build.yml#L201 We need to indicate to the GitHub Cache action the new path to be c

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345520370 > https://github.com/apache/nuttx/blob/61563d6004fe92ae50d567bc4f81c81f60d8c757/.github/workflows/build.yml#L201 > > We need to indicate to the GitHub Cache action the new pat

[GitHub] [nuttx] pkarashchenko commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
pkarashchenko commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345528376 AVR build fails -- 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.

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345532482 avr doesn't change, I can't understand why avr fail. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [nuttx] pkarashchenko commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
pkarashchenko commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345534790 I have Macbook and will try some steps later today -- 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

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045221325 ## include/nuttx/sched_note.h: ## @@ -448,6 +498,24 @@ extern "C" #define EXTERN extern #endif +/*

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045224404 ## drivers/note/sched_note.c: ## @@ -409,22 +486,31 @@ static void note_spincommon(FAR struct tcb_s *tcb, int type) { struct note

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345541893 @pkarashchenko I remove hex generation from build, let's see what happen with the new change. -- This is an automated message from the Apache Git Service. To respond to the messag

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045225570 ## include/nuttx/sched_note.h: ## @@ -435,6 +435,56 @@ struct note_filter_irq_s #endif /* CONFIG_SCHED_INSTRUMENTATION_FILTER */ +struct sched_note_ops_s Re

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045221073 ## include/nuttx/sched_note.h: ## @@ -435,6 +435,56 @@ struct note_filter_irq_s #endif /* CONFIG_SCHED_INSTRUMENTATION_FILTER */ +struct sched_note_ops_s +{

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045225570 ## include/nuttx/sched_note.h: ## @@ -435,6 +435,56 @@ struct note_filter_irq_s #endif /* CONFIG_SCHED_INSTRUMENTATION_FILTER */ +struct sched_note_ops_s Re

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045221062 ## include/nuttx/sched_note.h: ## @@ -435,6 +435,56 @@ struct note_filter_irq_s #endif /* CONFIG_SCHED_INSTRUMENTATION_FILTER */ +struct sched_note_ops_s +{

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045221325 ## include/nuttx/sched_note.h: ## @@ -448,6 +498,24 @@ extern "C" #define EXTERN extern #endif +/*

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7841: drivers/note: sched_note support mulit-channel

2022-12-11 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1045226279 ## include/nuttx/sched_note.h: ## @@ -435,6 +435,56 @@ struct note_filter_irq_s #endif /* CONFIG_SCHED_INSTRUMENTATION_FILTER */ +struct sched_note_ops_s Re

[GitHub] [nuttx] xiaoxiang781216 opened a new pull request, #7844: Refine the driver note structure

2022-12-11 Thread GitBox
xiaoxiang781216 opened a new pull request, #7844: URL: https://github.com/apache/nuttx/pull/7844 ## Summary - drivers/node: Rename note_register to note_initialize - drivers/node: Rename sched_note.c to to note_driver.c ## Impact Code refactor only ## Testing Pa

[GitHub] [nuttx] pkarashchenko commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
pkarashchenko commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345565765 @xiaoxiang781216 please fill an issue for hex generation for AVR, so it is not forgotten -- This is an automated message from the Apache Git Service. To respond to the message, ple

[GitHub] [nuttx] pkarashchenko commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
pkarashchenko commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345566489 @xiaoxiang781216 somehow I can't merge this PR, because when I press merge button, I'm getting some OAuth error -- This is an automated message from the Apache Git Service. To respo

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 merged PR #7842: URL: https://github.com/apache/nuttx/pull/7842 -- 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...@nutt

[nuttx] branch master updated (61563d6004 -> 4a84555d1c)

2022-12-11 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 61563d6004 risc-v/es32c3: improve passthrough performance by iob offload add 2bc780f062 risc-v/esp32c3: Move .

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345572447 It's strange, I can merge it. -- 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 spe

[GitHub] [nuttx] xiaoxiang781216 opened a new pull request, #7845: ci: Enable mips build on macOS

2022-12-11 Thread GitBox
xiaoxiang781216 opened a new pull request, #7845: URL: https://github.com/apache/nuttx/pull/7845 ## Summary ## Impact ci ## Testing Pass CI -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the UR

[GitHub] [nuttx] anchao commented on a diff in pull request #7525: Improvements in TCP connections allocation.

2022-12-11 Thread GitBox
anchao commented on code in PR #7525: URL: https://github.com/apache/nuttx/pull/7525#discussion_r1045246200 ## net/tcp/Kconfig: ## @@ -51,11 +51,45 @@ config NET_TCPURGDATA compiled in. Urgent data (out-of-band data) is a rarely used TCP feature

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7843: sim/lua: enable luv module by default

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7843: URL: https://github.com/apache/nuttx/pull/7843#issuecomment-1345579940 @XuNeo please rebase to the last master, ci break has been fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub an

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1345579995 @anchao please rebase to the last master, ci break has been fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7808: move common assert logic together.

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7808: URL: https://github.com/apache/nuttx/pull/7808#issuecomment-1345580107 @XinStellaris please rebase to the last master, ci break has been fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to G

[GitHub] [nuttx-apps] xiaoxiang781216 opened a new pull request, #1452: build.yml: Sync with nuttx version

2022-12-11 Thread GitBox
xiaoxiang781216 opened a new pull request, #1452: URL: https://github.com/apache/nuttx-apps/pull/1452 ## Summary ## Impact CI ## Testing Pass CI -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use t

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7525: Improvements in TCP connections allocation.

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7525: URL: https://github.com/apache/nuttx/pull/7525#issuecomment-1345581182 @fjpanag please rebase to the last master, ci break has been fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7525: Improvements in TCP connections allocation.

2022-12-11 Thread GitBox
xiaoxiang781216 commented on PR #7525: URL: https://github.com/apache/nuttx/pull/7525#issuecomment-1345581371 @fjpanag it's better to apply the similar change to all socket conn, not only tcp. -- This is an automated message from the Apache Git Service. To respond to the message, please l

[GitHub] [nuttx] xiaoxiang781216 closed pull request #7845: ci: Enable mips build on macOS

2022-12-11 Thread GitBox
xiaoxiang781216 closed pull request #7845: ci: Enable mips build on macOS URL: https://github.com/apache/nuttx/pull/7845 -- 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] [nuttx] acassis commented on a diff in pull request #7762: arch: xtensa/esp32: Add esp32_himem_chardev.c

2022-12-11 Thread GitBox
acassis commented on code in PR #7762: URL: https://github.com/apache/nuttx/pull/7762#discussion_r1045292933 ## arch/xtensa/src/esp32/esp32_himem_chardev.c: ## @@ -0,0 +1,414 @@ +/ + * arch/xtensa/src/es

[GitHub] [nuttx] acassis commented on pull request #7762: arch: xtensa/esp32: Add esp32_himem_chardev.c

2022-12-11 Thread GitBox
acassis commented on PR #7762: URL: https://github.com/apache/nuttx/pull/7762#issuecomment-1345651044 Hi @enai what is the main difference from this driver and the existent arch/xtensa/src/esp32/esp32_himem.c ? Isn't it possible to modify existing driver to fit your need? -- This is

[GitHub] [nuttx-apps] pkarashchenko merged pull request #1452: build.yml: Sync with nuttx version

2022-12-11 Thread GitBox
pkarashchenko merged PR #1452: URL: https://github.com/apache/nuttx-apps/pull/1452 -- 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...@n

[nuttx-apps] branch master updated: build.yml: Sync with nuttx version

2022-12-11 Thread pkarashchenko
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/nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new e07d8f546 build.yml: Sync with nuttx

[GitHub] [nuttx] pkarashchenko commented on pull request #7842: Fix the ci break

2022-12-11 Thread GitBox
pkarashchenko commented on PR #7842: URL: https://github.com/apache/nuttx/pull/7842#issuecomment-1345692073 @xiaoxiang781216 I just checked with another PR. This seems to be a mobile app issue since I can merge from a laptop, but not from GitHub Android app. -- This is an automated messag

[GitHub] [nuttx] masayuki2009 commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
masayuki2009 commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1345697873 >@masayuki2009 san, please try the latest update, I changed the update strategy for RX index, which can fix the UDP issue, and also I did the related test of iperf UDP/TCP, it seems th

[nuttx-website] branch asf-site updated: Publishing web: 4b401e13a9490577fa0448cbe8b6d393302e43f3 docs: 4a84555d1c805b5471151a92cbb3c58a17306a73

2022-12-11 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 ad91ded4 Publishing web: 4b401e13

[GitHub] [nuttx] lupyuen opened a new pull request, #7846: arm64/a64: Add driver for MIPI DSI

2022-12-11 Thread GitBox
lupyuen opened a new pull request, #7846: URL: https://github.com/apache/nuttx/pull/7846 ## Summary This PR adds the driver for Allwinner A64's MIPI Display Serial Interface (DSI) and MIPI Display Physical Layer (D-PHY). This driver will be used by the upcoming Display Driver f

[GitHub] [nuttx] XinStellaris commented on a diff in pull request #7808: move common assert logic together.

2022-12-11 Thread GitBox
XinStellaris commented on code in PR #7808: URL: https://github.com/apache/nuttx/pull/7808#discussion_r1045339088 ## arch/avr/src/common/avr_assert.c: ## @@ -23,102 +23,12 @@ / #include - -#include

[GitHub] [nuttx] anchao commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
anchao commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1345771093 > `qemu-armv8a:netnsh` seems OK but `qemu-armv8a:netnsh_smp` has a problem. This is not caused by the commit of #7616. This issue existed before #7616 was merged. I think we can create

[GitHub] [nuttx] flyingfish89 opened a new pull request, #7847: Add implementation of function to the math library

2022-12-11 Thread GitBox
flyingfish89 opened a new pull request, #7847: URL: https://github.com/apache/nuttx/pull/7847 ## Summary function: scalbnf:get a float number of x*2^n scalbn :get a double number scalbnl:get a long double number The implementation of the function borrows from musl ## I

[GitHub] [nuttx-apps] XuNeo opened a new pull request, #1453: luamodules/luv: fix comile warning -Werror=int-to-pointer-cast

2022-12-11 Thread GitBox
XuNeo opened a new pull request, #1453: URL: https://github.com/apache/nuttx-apps/pull/1453 ## Summary Fix compile error when reported by CI. ## Impact No. ## Testing Local build with Wall Werror passed. -- This is an automated message from the Apache Git Service

[GitHub] [nuttx] XuNeo commented on pull request #7843: sim/lua: enable luv module by default

2022-12-11 Thread GitBox
XuNeo commented on PR #7843: URL: https://github.com/apache/nuttx/pull/7843#issuecomment-1345836784 CI failed due to luv compile warning. Fixed [here](https://github.com/apache/nuttx-apps/pull/1453). -- This is an automated message from the Apache Git Service. To respond to the message

[GitHub] [nuttx] masayuki2009 commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
masayuki2009 commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1345841439 >This is not caused by the commit of https://github.com/apache/nuttx/pull/7616. This issue existed before https://github.com/apache/nuttx/pull/7616 was merged. @anchao Hmm,

[GitHub] [nuttx] anchao commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
anchao commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1345881412 > > This is not caused by the commit of #7616. This issue existed before #7616 was merged. > > @anchao Hmm, I do not think so. With the latest upstream, `iperf -s` in TCP mode achieve

[GitHub] [nuttx-apps] masayuki2009 opened a new pull request, #1454: netutils: iperf: Fix the transfer bytes and the bandwidth overflow

2022-12-11 Thread GitBox
masayuki2009 opened a new pull request, #1454: URL: https://github.com/apache/nuttx-apps/pull/1454 ## Summary - I noticed that the iperf shows incorrect transfer bytes in each period. - Also, the bandwidth overflows sometimes. - This commit fixes these issues. ## Impact

[GitHub] [nuttx-apps] masayuki2009 commented on pull request #1454: netutils: iperf: Fix the transfer bytes and the bandwidth overflow

2022-12-11 Thread GitBox
masayuki2009 commented on PR #1454: URL: https://github.com/apache/nuttx-apps/pull/1454#issuecomment-1345952790 ``` + x86_64-elf-gcc --version Copyright (C) 2002-2007 Andrew Tridgell ccache: error: Could not find compiler "x86_64-elf-gcc" in PATH ``` -- This is an automated mes

[GitHub] [nuttx] flyingfish89 closed pull request #7847: Add implementation of function to the math library

2022-12-11 Thread GitBox
flyingfish89 closed pull request #7847: Add implementation of function to the math library URL: https://github.com/apache/nuttx/pull/7847 -- 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

[GitHub] [nuttx] flyingfish89 opened a new pull request, #7848: add function for math library

2022-12-11 Thread GitBox
flyingfish89 opened a new pull request, #7848: URL: https://github.com/apache/nuttx/pull/7848 ## Summary function: scalbnf:get a float number of x*2^n scalbn :get a double number scalbnl:get a long double number The implementation of the function borrows from musl ## Impact

[GitHub] [nuttx] masayuki2009 commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
masayuki2009 commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1346032260 >What you shared are two different issues, one is tcp service and the other is client, please can retry latest PR, it solves qemu-armv8a: netnsh_smp tcp traffic drops Yes. The f

[GitHub] [nuttx] masayuki2009 commented on pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
masayuki2009 commented on PR #7830: URL: https://github.com/apache/nuttx/pull/7830#issuecomment-1346035052 Though there are some issues with 'Build / macOS (macos)', I think the issues do not relate to this PR. So let me merge this PR. -- This is an automated message from the Apach

[GitHub] [nuttx] masayuki2009 merged pull request #7830: qemu-armv8a/netnsh: Set iob buffer size to 1514 to improve performance

2022-12-11 Thread GitBox
masayuki2009 merged PR #7830: URL: https://github.com/apache/nuttx/pull/7830 -- 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.a

[nuttx] branch master updated (4a84555d1c -> 4d52618128)

2022-12-11 Thread masayuki
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/nuttx.git from 4a84555d1c arduino-mega2560/nsh: Remove CONFIG_INTELHEX_BINARY add cda8b79950 virtio/net: reschedule interrupt w