[nuttx] branch master updated: drivers/note: rename /dev/note to /dev/note/ram

2022-12-14 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 2460ff4f78 drivers/note: rename /dev/note to /

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7858: drivers/note: rename /dev/note to /dev/note/ram

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

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7875: arch: move stack and task dump to common code

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7875: URL: https://github.com/apache/nuttx/pull/7875#discussion_r1049242442 ## include/nuttx/arch.h: ## @@ -1776,6 +1776,21 @@ int up_timer_tick_start(clock_t ticks); * The actual implementation may be a MACRO or an inline function. *

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

2022-12-14 Thread GitBox
Gary-Hobson commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1049304686 ## drivers/note/Kconfig: ## @@ -10,6 +10,13 @@ menuconfig DRIVER_NOTE if DRIVER_NOTE +config DRIVER_NOTE_MAX + int "Maximum number of sched_note drivers" +

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7115: time: Typedef time_t to uint64_t if CONFIG_SYSTEM_TIME64 is defined

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7115: URL: https://github.com/apache/nuttx/pull/7115#discussion_r1049277487 ## include/time.h: ## @@ -98,7 +98,11 @@ /* Scalar types */ +#ifdef CONFIG_SYSTEM_TIME64 +typedef int64_t time_t; /* Holds time in seconds */ Revi

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7884: add i2c driver for gd32f450 MCU

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7884: URL: https://github.com/apache/nuttx/pull/7884#discussion_r1049271745 ## boards/arm/gd32f4/gd32f450zk-eval/src/gd32f4xx_at24.c: ## @@ -0,0 +1,156 @@ +/ + *

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7884: add i2c driver for gd32f450 MCU

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7884: URL: https://github.com/apache/nuttx/pull/7884#discussion_r1049271745 ## boards/arm/gd32f4/gd32f450zk-eval/src/gd32f4xx_at24.c: ## @@ -0,0 +1,156 @@ +/ + *

[GitHub] [nuttx] yamt commented on pull request #7115: time: Typedef time_t to uint64_t if CONFIG_SYSTEM_TIME64 is defined

2022-12-14 Thread GitBox
yamt commented on PR #7115: URL: https://github.com/apache/nuttx/pull/7115#issuecomment-1352612524 this change still have the problems pointed out in the older PR. https://github.com/apache/nuttx/pull/4693#discussion_r731862198 https://github.com/apache/nuttx/pull/4693#issuecomment-9466

[GitHub] [nuttx] yamt commented on a diff in pull request #7115: time: Typedef time_t to uint64_t if CONFIG_SYSTEM_TIME64 is defined

2022-12-14 Thread GitBox
yamt commented on code in PR #7115: URL: https://github.com/apache/nuttx/pull/7115#discussion_r1049254121 ## include/time.h: ## @@ -98,7 +98,11 @@ /* Scalar types */ +#ifdef CONFIG_SYSTEM_TIME64 +typedef int64_t time_t; /* Holds time in seconds */ Review Comment:

[GitHub] [nuttx] GD32-MCU commented on a diff in pull request #7884: add i2c driver for gd32f450 MCU

2022-12-14 Thread GitBox
GD32-MCU commented on code in PR #7884: URL: https://github.com/apache/nuttx/pull/7884#discussion_r1049250185 ## boards/arm/gd32f4/gd32f450zk-eval/src/gd32f4xx_at24.c: ## @@ -0,0 +1,156 @@ +/ + * boards/

[GitHub] [nuttx] masayuki2009 opened a new pull request, #7885: boards: qemu-armv8a: Enable the ping command for netnsh and netnsh_smp

2022-12-14 Thread GitBox
masayuki2009 opened a new pull request, #7885: URL: https://github.com/apache/nuttx/pull/7885 ## Summary - This commit enables the ping command for netnsh and netnsh_smp ## Impact - None ## Testing - Tested with QEMU-7.1 -- This is an automated messag

[nuttx-apps] branch master updated: drivers/note: rename /dev/note to /dev/note/ram

2022-12-14 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 595adbcca drivers/note: rename /dev/note

[GitHub] [nuttx-apps] xiaoxiang781216 merged pull request #1455: drivers/note: rename /dev/note to /dev/note/ram

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #1455: URL: https://github.com/apache/nuttx-apps/pull/1455 -- 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...

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7858: drivers/note: rename /dev/note to /dev/note/ram

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7858: URL: https://github.com/apache/nuttx/pull/7858#issuecomment-1352536408 need rebase -- 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

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

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1049146020 ## drivers/note/Kconfig: ## @@ -10,6 +10,13 @@ menuconfig DRIVER_NOTE if DRIVER_NOTE +config DRIVER_NOTE_MAX + int "Maximum number of sched_note driver

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #7884: add i2c driver for gd32f450 MCU

2022-12-14 Thread GitBox
xiaoxiang781216 commented on code in PR #7884: URL: https://github.com/apache/nuttx/pull/7884#discussion_r1049185711 ## boards/arm/gd32f4/gd32f450zk-eval/src/gd32f4xx_at24.c: ## @@ -0,0 +1,156 @@ +/ + *

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7011: add chip GD32F450 of GD32MCU

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7011: URL: https://github.com/apache/nuttx/pull/7011#issuecomment-1352515434 See here: https://github.com/apache/nuttx/pull/7884 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[nuttx] branch master updated (5b4e12774c -> 949a0d6032)

2022-12-14 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 5b4e12774c sched: remove unnecessary type cast new e9fe00c573 arch/renesas: remove FAR and apply formatting

[nuttx] 02/02: arch/arm: remove FAR from ARM files

2022-12-14 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 commit 949a0d603215e99af4b4d42b0a900790d13f3465 Author: Petro Karashchenko AuthorDate: Thu Dec 15 00:53:47 2022 +0200 ar

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7881: Remove FAR and apply formatting

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

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7881: Remove FAR and apply formatting

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7881: URL: https://github.com/apache/nuttx/pull/7881#issuecomment-1352513258 let's ignore macOS download esp32-devkitc download fail. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use th

[GitHub] [nuttx] GD32-MCU opened a new pull request, #7884: add i2c driver for gd32f450 MCU

2022-12-14 Thread GitBox
GD32-MCU opened a new pull request, #7884: URL: https://github.com/apache/nuttx/pull/7884 ## Summary Add I2C driver for GD32F450 MCU ## Impact ## Testing Has been test on the GD32F450zk eval board -- This is an automated message from the Apache Git Service. To respond

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

2022-12-14 Thread GitBox
Gary-Hobson commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1049181236 ## drivers/note/noteram_driver.c: ## @@ -105,10 +108,24 @@ static struct noteram_info_s g_noteram_info = static struct noteram_taskname_s g_noteram_taskname; #endif

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

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7841: URL: https://github.com/apache/nuttx/pull/7841#issuecomment-1352465464 @Gary-Hobson please rebase your change. -- 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

[nuttx] branch master updated: sched: remove unnecessary type cast

2022-12-14 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 5b4e12774c sched: remove unnecessary type cast

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7882: sched: remove unnecessary type cast

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #7882: URL: https://github.com/apache/nuttx/pull/7882 -- 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 (03f07effc9 -> b6d9d4e92f)

2022-12-14 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 03f07effc9 drivers/note: Fix the style issue add b6d9d4e92f xtensa/esp32: Fix PSRAM support when Stack Smash pr

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7880: xtensa/esp32: Fix PSRAM support when Stack Smash protection is enabled

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

[GitHub] [nuttx] gustavonihei commented on pull request #7880: xtensa/esp32: Fix PSRAM support when Stack Smash protection is enabled

2022-12-14 Thread GitBox
gustavonihei commented on PR #7880: URL: https://github.com/apache/nuttx/pull/7880#issuecomment-1352410945 CI passed, but just because I pushed a commit that changed cibuild.sh and invalidated the GitHub cache. Issue with python tools still exists. -- This is an automated message f

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

2022-12-14 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 1567f9de Publishing web: 4b401e13

[GitHub] [nuttx] pkarashchenko commented on issue #7393: Problems with priority inheritance.

2022-12-14 Thread GitBox
pkarashchenko commented on issue #7393: URL: https://github.com/apache/nuttx/issues/7393#issuecomment-1352371774 @fjpanag I renewed https://github.com/apache/nuttx/pull/7464 in non-SMP case. Could you please try this changes in your case? -- This is an automated message from the Apache Gi

[GitHub] [nuttx] pkarashchenko closed pull request #7883: sched/semaphore: fix NULL pointer dereference in nxsem_release_holder

2022-12-14 Thread GitBox
pkarashchenko closed pull request #7883: sched/semaphore: fix NULL pointer dereference in nxsem_release_holder URL: https://github.com/apache/nuttx/pull/7883 -- 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 t

[GitHub] [nuttx] pkarashchenko opened a new pull request, #7883: sched/semaphore: fix NULL pointer dereference in nxsem_release_holder

2022-12-14 Thread GitBox
pkarashchenko opened a new pull request, #7883: URL: https://github.com/apache/nuttx/pull/7883 ## Summary Fix NULL pointer dereference in nxsem_release_holder ## Impact Fix crash ## Testing SAMv7 based boad -- This is an automated message from the Apache Git Serv

[GitHub] [nuttx] pkarashchenko opened a new pull request, #7882: sched: remove unnecessary type cast

2022-12-14 Thread GitBox
pkarashchenko opened a new pull request, #7882: URL: https://github.com/apache/nuttx/pull/7882 ## Summary - Remove unnecessary type cast - Fix code style issues ## Impact None ## Testing Pass CI -- This is an automated message from the Apache Git Service. To r

[GitHub] [nuttx] pkarashchenko opened a new pull request, #7881: Remove FAR and apply formatting

2022-12-14 Thread GitBox
pkarashchenko opened a new pull request, #7881: URL: https://github.com/apache/nuttx/pull/7881 ## Summary Remove FAR from ARM and Renesas files. Apply code formatting ## Impact None ## Testing Pass CI -- This is an automated message from the Apache Git Servic

[GitHub] [nuttx] gustavonihei commented on pull request #7880: xtensa/esp32: Fix PSRAM support when Stack Smash protection is enabled

2022-12-14 Thread GitBox
gustavonihei commented on PR #7880: URL: https://github.com/apache/nuttx/pull/7880#issuecomment-1352116654 Failure reason: ``` 2022-12-14T19:54:15.8086280Z LD: nuttx 2022-12-14T19:54:16.3875760Z CP: nuttx.hex 2022-12-14T19:54:16.4132180Z MKIMAGE: ESP32-C3 binary 2022-12-14T19:5

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

2022-12-14 Thread GitBox
pkarashchenko commented on code in PR #7841: URL: https://github.com/apache/nuttx/pull/7841#discussion_r1048884200 ## drivers/note/noteram_driver.c: ## @@ -105,10 +108,24 @@ static struct noteram_info_s g_noteram_info = static struct noteram_taskname_s g_noteram_taskname; #end

[GitHub] [nuttx] gustavonihei commented on pull request #7880: xtensa/esp32: Fix PSRAM support when Stack Smash protection is enabled

2022-12-14 Thread GitBox
gustavonihei commented on PR #7880: URL: https://github.com/apache/nuttx/pull/7880#issuecomment-1352042817 `esp32c3-devkit:wapi` and `esp32-devkitc:wapi` in macOS runner failed for unknown reasons. I've changed the PR to draft for debugging this issue. -- This is an automated message f

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #7870: mm/iob: add support of partial bytes clone

2022-12-14 Thread GitBox
pkarashchenko commented on code in PR #7870: URL: https://github.com/apache/nuttx/pull/7870#discussion_r1048881026 ## mm/iob/iob_clone.c: ## @@ -137,26 +225,37 @@ int iob_clone(FAR struct iob_s *iob1, FAR struct iob_s *iob2, bool throttled) * transferred? */ -

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #7877: sched/release_tcb: Do not release stack for user processes here

2022-12-14 Thread GitBox
pkarashchenko commented on code in PR #7877: URL: https://github.com/apache/nuttx/pull/7877#discussion_r1048876992 ## sched/sched/sched_releasetcb.c: ## @@ -126,7 +126,22 @@ int nxsched_release_tcb(FAR struct tcb_s *tcb, uint8_t ttype) if (tcb->stack_alloc_ptr)

[nuttx] branch master updated (8f3c425067 -> 03f07effc9)

2022-12-14 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/nuttx.git from 8f3c425067 xtensa/esp32s3: Enable booting from MCUboot bootloader new d7307ef26c drivers/node: Rename note_

[nuttx] 01/04: drivers/node: Rename note_register to note_initialize

2022-12-14 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.git commit d7307ef26cb6f6249ff2313ae0505b2060f201e1 Author: Xiang Xiao AuthorDate: Sun Dec 11 20:45:20 2022 +0800 driver

[nuttx] 04/04: drivers/note: Fix the style issue

2022-12-14 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.git commit 03f07effc9a7b66d035d5d4ff8966d7909b2176d Author: Xiang Xiao AuthorDate: Mon Dec 12 10:04:16 2022 +0800 driver

[nuttx] 03/04: drivers/segger: Rename nuttx/note/note_sysview.h to nuttx/segger/sysview.h

2022-12-14 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.git commit c36640e205dea837c1f0a4274a22c930687dac60 Author: Xiang Xiao AuthorDate: Sun Dec 11 21:14:34 2022 +0800 driver

[GitHub] [nuttx] pkarashchenko merged pull request #7844: Refine the driver note structure

2022-12-14 Thread GitBox
pkarashchenko merged PR #7844: URL: https://github.com/apache/nuttx/pull/7844 -- 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.

[nuttx] 02/04: drivers/node: Rename sched_note.c to to note_driver.c

2022-12-14 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.git commit 126c93015f7bb7f72d674c75cc05113f4f686ec7 Author: Xiang Xiao AuthorDate: Sun Dec 11 20:55:08 2022 +0800 driver

[GitHub] [nuttx] gustavonihei opened a new pull request, #7880: xtensa/esp32: Fix PSRAM support when Stack Smash protection is enabled

2022-12-14 Thread GitBox
gustavonihei opened a new pull request, #7880: URL: https://github.com/apache/nuttx/pull/7880 ## Summary This PR intends to fix the PSRAM support on ESP32 when Stack Smash Protection is enabled (`CONFIG_STACK_CANARIES=1`). During PSRAM initialization the Cache needs to be disab

[GitHub] [nuttx] gustavonihei commented on a diff in pull request #7872: boards/esp32-devkitc: Disable FPU test for knsh defconfig

2022-12-14 Thread GitBox
gustavonihei commented on code in PR #7872: URL: https://github.com/apache/nuttx/pull/7872#discussion_r1048806427 ## boards/xtensa/esp32/esp32-devkitc/configs/knsh/defconfig: ## @@ -62,4 +62,5 @@ CONFIG_START_YEAR=2011 CONFIG_SYSTEM_NSH=y CONFIG_TESTING_GETPRIME=y CONFIG_TEST

[nuttx] branch master updated: xtensa/esp32s3: Enable booting from MCUboot bootloader

2022-12-14 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 8f3c425067 xtensa/esp32s3: Enable booting from

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7873: xtensa/esp32s3: Enable booting from MCUboot bootloader

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #7873: URL: https://github.com/apache/nuttx/pull/7873 -- 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 (893b1477ea -> d172d8cd0f)

2022-12-14 Thread davids5
This is an automated email from the ASF dual-hosted git repository. davids5 pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 893b1477ea boards/esp32-lyrat: Add initial touch pad configuration add d172d8cd0f S32K FlexCAN don't use a blocki

[GitHub] [nuttx] davids5 merged pull request #7879: S32K FlexCAN don't use a blocking wait in tx avail

2022-12-14 Thread GitBox
davids5 merged PR #7879: URL: https://github.com/apache/nuttx/pull/7879 -- 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.apache

[nuttx] branch master updated (b895207489 -> 893b1477ea)

2022-12-14 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 b895207489 arm64/a64: Add driver for MIPI DSI add 15dadd0099 arch/xtensa/esp32: Remove redundant RTC registers

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7786: arch/xtensa: Add support for touch pad polling on ESP32

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #7786: URL: https://github.com/apache/nuttx/pull/7786 -- 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: arm64/a64: Add driver for MIPI DSI

2022-12-14 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 b895207489 arm64/a64: Add driver for MIPI DSI

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7865: arm64/a64: Add driver for MIPI DSI

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

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7844: Refine the driver note structure

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7844: URL: https://github.com/apache/nuttx/pull/7844#issuecomment-1351371397 > One last comment @pkarashchenko do you have more comment^_^? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[nuttx] branch master updated (80fa70da4e -> 5492e961bc)

2022-12-14 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 80fa70da4e boards/sim: Add nxcamera config add d6d56c3372 mm/iob: add support of nonblock iob_clone add 88

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7870: mm/iob: add support of partial bytes clone

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

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7876: boards/sim: Add nxcamera config

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

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7878: Remove redundant length checking

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #7878: URL: https://github.com/apache/nuttx/pull/7878 -- 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 (b2b014df0b -> 80fa70da4e)

2022-12-14 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 b2b014df0b Remove redundant length checking add 80fa70da4e boards/sim: Add nxcamera config No new revisions we

[nuttx] branch master updated (c74cb1aaa5 -> b2b014df0b)

2022-12-14 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 c74cb1aaa5 net/arp: change arptable struct from arp_entry_s to arpreq add b2b014df0b Remove redundant length ch

[nuttx-apps] 01/02: cmd_arp: add device input for arp interface

2022-12-14 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 df3121213e563345212064d514ae5103f176e561 Author: zhanghongyu AuthorDate: Tue Dec 6 13:42:15 2022 +0800 cmd_a

[nuttx-apps] branch master updated (11f0c2af4 -> c7e8ade59)

2022-12-14 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 11f0c2af4 system/camera: fix 'is_image' uninitialized new df3121213 cmd_arp: add device input for arp inte

[nuttx-apps] 02/02: arp: change arptable get struct from arp_entry_s to arpreq

2022-12-14 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 c7e8ade5909112c88a5d6a1628222f21796cf112 Author: zhanghongyu AuthorDate: Sun Dec 11 21:36:23 2022 +0800 arp:

[GitHub] [nuttx-apps] xiaoxiang781216 merged pull request #1456: arp commands can specify a network adapter

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #1456: URL: https://github.com/apache/nuttx-apps/pull/1456 -- 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-apps] branch master updated: system/camera: fix 'is_image' uninitialized

2022-12-14 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 11f0c2af4 system/camera: fix 'is_image' u

[GitHub] [nuttx-apps] xiaoxiang781216 merged pull request #1457: system/camera: fix 'is_image' uninitialized

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #1457: URL: https://github.com/apache/nuttx-apps/pull/1457 -- 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] branch master updated (1760057e29 -> c74cb1aaa5)

2022-12-14 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 1760057e29 s32k1xx:Apply Style Changes from code review add 1a81a936df arp: add device check for arp interface

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7862: arp rules bind to nics

2022-12-14 Thread GitBox
xiaoxiang781216 merged PR #7862: URL: https://github.com/apache/nuttx/pull/7862 -- 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] 02/05: s32k1xx:serial Add EDMA

2022-12-14 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 commit 9bb1226b04e14524acbb73797f38a9a825a6361c Author: David Sidrane AuthorDate: Fri Dec 9 05:15:02 2022 -0800 s32k1xx:

[nuttx] 03/05: 32k1xx:serial fix HW Handshaking

2022-12-14 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 commit 5a948ed3dd4be4510f7019e6fc7a046ded0e9f41 Author: David Sidrane AuthorDate: Mon Dec 12 12:12:42 2022 -0800 32k1xx:

[nuttx] branch master updated (1a67dc7c68 -> 1760057e29)

2022-12-14 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 1a67dc7c68 sched/release_tcb: Do not release stack for user processes here new 8a412ba59b s32k1xx:Refactor DMA

[nuttx] 05/05: s32k1xx:Apply Style Changes from code review

2022-12-14 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 commit 1760057e296cd31b0950e0c3fccb74aecaefe5ba Author: David Sidrane AuthorDate: Wed Dec 14 05:11:30 2022 -0500 s32k1xx

[nuttx] 01/05: s32k1xx:Refactor DMAMUX for s32k11x, s32k14x

2022-12-14 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 commit 8a412ba59b77609df8fe36c4ad8d758e1f9d4305 Author: David Sidrane AuthorDate: Wed Dec 14 02:21:24 2022 -0800 s32k1xx

[nuttx] 04/05: 32k1xx:serial:Support GPIO (buffler level) Flow control

2022-12-14 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 commit 592e946bdf04e188f1c03273fbbe9fa9f4d00dbb Author: David Sidrane AuthorDate: Tue Dec 13 03:34:56 2022 -0800 32k1xx:

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7869: Add DMA to the s32k1 serial

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

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #7869: Add DMA to the s32k1 serial

2022-12-14 Thread GitBox
xiaoxiang781216 commented on PR #7869: URL: https://github.com/apache/nuttx/pull/7869#issuecomment-1351316153 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 unsubs

[GitHub] [nuttx] lupyuen commented on pull request #7865: arm64/a64: Add driver for MIPI DSI

2022-12-14 Thread GitBox
lupyuen commented on PR #7865: URL: https://github.com/apache/nuttx/pull/7865#issuecomment-1351280135 I just rebased with master, hope this fixes the macOS CI -- 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] davids5 commented on pull request #7869: Add DMA to the s32k1 serial

2022-12-14 Thread GitBox
davids5 commented on PR #7869: URL: https://github.com/apache/nuttx/pull/7869#issuecomment-1351274799 @xiaoxiang781216 Any input? -- 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 comm

[GitHub] [nuttx] PetervdPerk-NXP opened a new pull request, #7879: S32K FlexCAN don't use a blocking wait in tx avail

2022-12-14 Thread GitBox
PetervdPerk-NXP opened a new pull request, #7879: URL: https://github.com/apache/nuttx/pull/7879 ## Summary When using MSG_DONTWAIT while TX queue is full, sendmsg could block up to 10ms. Changed to behavior of tx avail to match the IMXRT driver and don't block while executing tx_avai

[GitHub] [nuttx] pkarashchenko commented on pull request #7869: Add DMA to the s32k1 serial

2022-12-14 Thread GitBox
pkarashchenko commented on PR #7869: URL: https://github.com/apache/nuttx/pull/7869#issuecomment-1351110525 > @pkarashchenko - Thank you - I incorporated all the style changes. Do you have a tool you are using or just a great eye? > > The build error was from not having s32k11x DMAMUX

[GitHub] [nuttx] davids5 commented on pull request #7869: Add DMA to the s32k1 serial

2022-12-14 Thread GitBox
davids5 commented on PR #7869: URL: https://github.com/apache/nuttx/pull/7869#issuecomment-1350896365 @pkarashchenko - Thank you - I incorporated all the style changes. Do you have a tool you are using or just a great eye? The build error was from not having s32k11x DMAMUX that should

[nuttx] branch master updated (e1561f8512 -> 1a67dc7c68)

2022-12-14 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 e1561f8512 tools/ci/docker/linux/Dockerfile: add libv4l-dev add 1a67dc7c68 sched/release_tcb: Do not release st

[GitHub] [nuttx] xiaoxiang781216 merged pull request #7877: sched/release_tcb: Do not release stack for user processes here

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

[GitHub] [nuttx] wangjunfeng0 opened a new pull request, #7878: Remove redundant length checking

2022-12-14 Thread GitBox
wangjunfeng0 opened a new pull request, #7878: URL: https://github.com/apache/nuttx/pull/7878 Signed-off-by: wangjunfeng0 ## Summary delete the judgment of L4 datagram length in net_ipchksum.c ## Impact ## Testing -- This is an automated message from the Apache

[GitHub] [nuttx-apps] PeterBee97 opened a new pull request, #1457: system/camera: fix 'is_image' uninitialized

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