[GitHub] [nuttx] midokura-xavi92 commented on a diff in pull request #6718: add CMake build system support (Enhance #3704)

2023-03-28 Thread via GitHub
midokura-xavi92 commented on code in PR #6718: URL: https://github.com/apache/nuttx/pull/6718#discussion_r1150361452 ## CMakeLists.txt: ## @@ -0,0 +1,664 @@ +# ## +# CMakeLists.txt +# +# Licensed to the

[GitHub] [nuttx] fjpanag commented on a diff in pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
fjpanag commented on code in PR #8911: URL: https://github.com/apache/nuttx/pull/8911#discussion_r1150376378 ## libs/libc/stdio/lib_vasprintf.c: ## @@ -119,14 +119,18 @@ int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) #endif /* Return a pointer to the

[GitHub] [nuttx] pussuw opened a new issue, #8917: nxsem_wait_irq with MMU

2023-03-28 Thread via GitHub
pussuw opened a new issue, #8917: URL: https://github.com/apache/nuttx/issues/8917 I have encountered a little issue with semaphores, and nxsem_wait_irq which is used to wake the process waiting for a sempahore and do other cleanup i.e. handle priority inheritance etc. The issue ari

[GitHub] [nuttx] pussuw opened a new pull request, #8918: Sem waitirq mmu fix

2023-03-28 Thread via GitHub
pussuw opened a new pull request, #8918: URL: https://github.com/apache/nuttx/pull/8918 ## Summary When MMU is in use, sem_waitirq fails because it tries to access sem_t (the waited object) which is user memory. This either results in page fault (crash) o access to the wrong address envi

[GitHub] [nuttx] pussuw commented on issue #8917: nxsem_wait_irq with MMU

2023-03-28 Thread via GitHub
pussuw commented on issue #8917: URL: https://github.com/apache/nuttx/issues/8917#issuecomment-148385 Another option that comes to mind would be to temporarily map the user semaphore data to a kernel scratch area but this is quite a lot of work, as the physical page is needed and this i

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8913: boards: Fix broken defconfigs

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8913: URL: https://github.com/apache/nuttx/pull/8913#discussion_r1150426033 ## tools/ci/testlist/arm-10.dat: ## @@ -4,7 +4,7 @@ /arm/stm32/stm32f103-minimum,CONFIG_ARM_TOOLCHAIN_GNU_EABI -/arm/stm32/stm32f334-disco,CONFIG_ARM_TOOLCHAIN_CL

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8913: boards: Fix broken defconfigs

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8913: URL: https://github.com/apache/nuttx/pull/8913#discussion_r1150426264 ## boards/arm/stm32/nucleo-f302r8/configs/qenco/defconfig: ## @@ -17,24 +71,40 @@ CONFIG_ARCH_INTERRUPTSTACK=1024 CONFIG_ARCH_IRQPRIO=y CONFIG_BOARD_LOOPSPERMSEC=849

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
pkarashchenko commented on code in PR #8911: URL: https://github.com/apache/nuttx/pull/8911#discussion_r1150454461 ## libs/libc/stdio/lib_vasprintf.c: ## @@ -119,14 +119,18 @@ int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) #endif /* Return a pointer t

[GitHub] [nuttx] pkarashchenko commented on a diff in pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
pkarashchenko commented on code in PR #8911: URL: https://github.com/apache/nuttx/pull/8911#discussion_r1150456626 ## libs/libc/stdio/lib_vasprintf.c: ## @@ -119,14 +119,18 @@ int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) #endif /* Return a pointer t

[GitHub] [nuttx] davids5 commented on a diff in pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
davids5 commented on code in PR #8911: URL: https://github.com/apache/nuttx/pull/8911#discussion_r1150457885 ## libs/libc/stdio/lib_vasprintf.c: ## @@ -119,14 +119,18 @@ int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) #endif /* Return a pointer to the

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8913: boards: Fix broken defconfigs

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8913: URL: https://github.com/apache/nuttx/pull/8913#discussion_r1150460067 ## tools/ci/testlist/arm-10.dat: ## @@ -4,7 +4,7 @@ /arm/stm32/stm32f103-minimum,CONFIG_ARM_TOOLCHAIN_GNU_EABI -/arm/stm32/stm32f334-disco,CONFIG_ARM_TOOLCHAIN_CL

[GitHub] [nuttx] fjpanag commented on a diff in pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
fjpanag commented on code in PR #8911: URL: https://github.com/apache/nuttx/pull/8911#discussion_r1150464696 ## libs/libc/stdio/lib_vasprintf.c: ## @@ -119,14 +119,18 @@ int vasprintf(FAR char **ptr, FAR const IPTR char *fmt, va_list ap) #endif /* Return a pointer to the

[GitHub] [nuttx] Gary-Hobson opened a new pull request, #8919: sched: fix compile error when SCHED_CRITMONITOR is enabled

2023-03-28 Thread via GitHub
Gary-Hobson opened a new pull request, #8919: URL: https://github.com/apache/nuttx/pull/8919 ## Summary Compilation error occurs after SCHED_CRITMONITOR is enabled sched/sched_critmonitor.c:315: undefined reference to `serr' ## Impact ## Testing -- This is a

[GitHub] [nuttx] acassis commented on pull request #8913: boards: Fix broken defconfigs

2023-03-28 Thread via GitHub
acassis commented on PR #8913: URL: https://github.com/apache/nuttx/pull/8913#issuecomment-1486879938 > > Note that nxsig_timedwait and nxsig_procmask alone represent almost 50% of increase, maybe these could be the functions to investigate. > > The three biggest increases in function

[GitHub] [nuttx] acassis commented on pull request #8919: sched: fix compile error when SCHED_CRITMONITOR is enabled

2023-03-28 Thread via GitHub
acassis commented on PR #8919: URL: https://github.com/apache/nuttx/pull/8919#issuecomment-1486887383 @Gary-Hobson it is a good idea to include the info from this Summary in the commit log message, this way people will see it in the git local repository. -- This is an automated message fr

[GitHub] [nuttx] acassis commented on pull request #8915: net/tcp: Reply RST when we cannot receive data

2023-03-28 Thread via GitHub
acassis commented on PR #8915: URL: https://github.com/apache/nuttx/pull/8915#issuecomment-1486893216 @wengzhe please include this Summary message in the commit log message. -- 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 (c623a7b731 -> 10f294c026)

2023-03-28 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/nuttx.git from c623a7b731 drivers/lcd/st7789: Support mirror X/Y add 10f294c026 boards: Fix broken defconfigs No new revisions

[GitHub] [nuttx] acassis merged pull request #8913: boards: Fix broken defconfigs

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

[GitHub] [nuttx] lucasssvaz commented on pull request #8643: risc-v: SV32 MMU support for qemu-rv

2023-03-28 Thread via GitHub
lucasssvaz commented on PR #8643: URL: https://github.com/apache/nuttx/pull/8643#issuecomment-1486979187 @g2gps Please rebase your branch to the latest commit. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL ab

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8905: esp32: Add support to Ai-Thinker Audio Kit board and ESP32-A1S module

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8905: URL: https://github.com/apache/nuttx/pull/8905#discussion_r1150718229 ## boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h: ## @@ -0,0 +1,177 @@ +/ + * b

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8905: esp32: Add support to Ai-Thinker Audio Kit board and ESP32-A1S module

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8905: URL: https://github.com/apache/nuttx/pull/8905#discussion_r1150718229 ## boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h: ## @@ -0,0 +1,177 @@ +/ + * b

[GitHub] [nuttx] gustavonihei opened a new pull request, #8920: risc-v/espressif: Fix NULL-dereferencing in WDT interrupt handling

2023-03-28 Thread via GitHub
gustavonihei opened a new pull request, #8920: URL: https://github.com/apache/nuttx/pull/8920 ## Summary This PR intends to provide a fix for the WDT interrupt handling when using the `WDIOC_CAPTURE` feature. ## Impact Bugfix, now the `WDIOC_CAPTURE` ioctl is properly ha

[GitHub] [nuttx] fjpanag commented on pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
fjpanag commented on PR #8911: URL: https://github.com/apache/nuttx/pull/8911#issuecomment-1487062529 The checks failure here is a CI issue, right? -- 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

[GitHub] [nuttx] pkarashchenko commented on pull request #8911: asprintf: Fixed possible memory leak if print fails.

2023-03-28 Thread via GitHub
pkarashchenko commented on PR #8911: URL: https://github.com/apache/nuttx/pull/8911#issuecomment-1487064090 Just rebase on top of the latest master -- 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

[GitHub] [nuttx] acassis commented on a diff in pull request #8905: esp32: Add support to Ai-Thinker Audio Kit board and ESP32-A1S module

2023-03-28 Thread via GitHub
acassis commented on code in PR #8905: URL: https://github.com/apache/nuttx/pull/8905#discussion_r1150790155 ## boards/xtensa/esp32/esp32-audio-kit/src/esp32-audio-kit.h: ## @@ -0,0 +1,177 @@ +/ + * boar

[GitHub] [nuttx] ldube opened a new pull request, #8921: usbhost_hidkbd: Add the option to use interrupt transfers.

2023-03-28 Thread via GitHub
ldube opened a new pull request, #8921: URL: https://github.com/apache/nuttx/pull/8921 ## Summary Using the interrupt pipe is recommended in the Get_Report request section of the HID standard. This option has been added to support some keyboards that refuse to return valid keys when poll

[GitHub] [nuttx] patacongo commented on issue #8858: Issues with adjtime implementation / Build failure.

2023-03-28 Thread via GitHub
patacongo commented on issue #8858: URL: https://github.com/apache/nuttx/issues/8858#issuecomment-1487212762 > * Licensing issue: While major part of the implementation is my own and therefore can be released under Apache License, the idea of the algorithm itself is taken from libntp @patac

[GitHub] [nuttx] patacongo merged pull request #8914: signal: add SIGSYS

2023-03-28 Thread via GitHub
patacongo merged PR #8914: URL: https://github.com/apache/nuttx/pull/8914 -- 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.apac

[nuttx] branch master updated: signal: add SIGSYS

2023-03-28 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt 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 a8f4a89221 signal: add SIGSYS a8f4a89221 is descri

[GitHub] [nuttx] acassis merged pull request #8912: risc-v/espressif: Update revision of esp-hal-3rdparty

2023-03-28 Thread via GitHub
acassis merged PR #8912: URL: https://github.com/apache/nuttx/pull/8912 -- 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: risc-v/espressif: Update revision of esp-hal-3rdparty

2023-03-28 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 6647f194db risc-v/espressif: Update revision of

[nuttx] branch master updated: asprintf: Fixed possible memory leak if print fails.

2023-03-28 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 0b1ba70ac5 asprintf: Fixed possible memory leak

[GitHub] [nuttx] acassis merged pull request #8911: asprintf: Fixed possible memory leak if print fails.

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

[GitHub] [nuttx-apps] acassis merged pull request #1649: Add another batch of missing headers throughout the repository

2023-03-28 Thread via GitHub
acassis merged PR #1649: URL: https://github.com/apache/nuttx-apps/pull/1649 -- 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-apps] 01/03: Add another batch of missing headers throughout the repository

2023-03-28 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-apps.git commit efb4e0bc913a8858aac20aa9210fba3dba817e69 Author: Gustavo Henrique Nihei AuthorDate: Wed Mar 8 15:57:51 2023 -0300

[nuttx-apps] 03/03: luamodules: Fix implicit declaration warning for strncasecmp

2023-03-28 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-apps.git commit d650d3276f15236da91f3477c32c6b4995807e06 Author: Gustavo Henrique Nihei AuthorDate: Wed Mar 8 18:35:37 2023 -0300

[nuttx-apps] branch master updated (a1bca5070 -> d650d3276)

2023-03-28 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/nuttx-apps.git from a1bca5070 Changes to apps needed by nutts PR 8885 new efb4e0bc9 Add another batch of missing headers through

[nuttx-apps] 02/03: examples/popen: Fix NxStyle long line warning

2023-03-28 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-apps.git commit ce68d7a7388ff63b20c0259be871d35cb7dec9db Author: Gustavo Henrique Nihei AuthorDate: Wed Mar 8 18:34:59 2023 -0300

[GitHub] [nuttx] pkarashchenko merged pull request #8905: esp32: Add support to Ai-Thinker Audio Kit board and ESP32-A1S module

2023-03-28 Thread via GitHub
pkarashchenko merged PR #8905: URL: https://github.com/apache/nuttx/pull/8905 -- 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] branch master updated (0b1ba70ac5 -> b87eb7c82f)

2023-03-28 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 0b1ba70ac5 asprintf: Fixed possible memory leak if print fails. new c5145257fe esp32: Add Ai-Thinker ESP32-

[nuttx] 01/02: esp32: Add Ai-Thinker ESP32-A1S module

2023-03-28 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 c5145257fe85a75a4e6abc4fa24d3a3a3b84e94a Author: Alan Carvalho de Assis AuthorDate: Sat Mar 25 10:31:27 2023 -0300

[nuttx] 02/02: esp32: Add Ai-Thinker ESP32 Audio Kit board

2023-03-28 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 b87eb7c82fcdd2310d571521e022aebda256cf2b Author: Alan Carvalho de Assis AuthorDate: Sat Mar 25 11:21:18 2023 -0300

[GitHub] [nuttx] acassis commented on pull request #8893: rndis: various fixes for composite

2023-03-28 Thread via GitHub
acassis commented on PR #8893: URL: https://github.com/apache/nuttx/pull/8893#issuecomment-1487374305 please rebase to pass on 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 above to go to the specific comm

[GitHub] [nuttx] acassis commented on pull request #8906: MiniF4 peripherals support improvements

2023-03-28 Thread via GitHub
acassis commented on PR #8906: URL: https://github.com/apache/nuttx/pull/8906#issuecomment-1487375366 please rebase to 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 URL above to go to the specific comment

[GitHub] [nuttx] acassis commented on pull request #8907: video/fb: add vsync offset support

2023-03-28 Thread via GitHub
acassis commented on PR #8907: URL: https://github.com/apache/nuttx/pull/8907#issuecomment-1487375944 please rebase to 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 URL above to go to the specific comment

[GitHub] [nuttx] acassis commented on pull request #8908: nrf53: add RTC and tickless support

2023-03-28 Thread via GitHub
acassis commented on PR #8908: URL: https://github.com/apache/nuttx/pull/8908#issuecomment-1487376893 please rebase to 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 URL above to go to the specific comment

[GitHub] [nuttx] acassis commented on pull request #8909: nrf53: add GPIOTE support (GPIO interrupts)

2023-03-28 Thread via GitHub
acassis commented on PR #8909: URL: https://github.com/apache/nuttx/pull/8909#issuecomment-1487377385 please rebase to 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 URL above to go to the specific comment

[GitHub] [nuttx] ALTracer commented on pull request #8906: MiniF4 peripherals support improvements

2023-03-28 Thread via GitHub
ALTracer commented on PR #8906: URL: https://github.com/apache/nuttx/pull/8906#issuecomment-1487487457 Will rebase & test on master, fix lint warnings from local checkpatch.pl, and add README.md for this board, just later this week. To clarify, did you use precisely WeAct boards v3.1 revi

[GitHub] [nuttx-apps] patacongo commented on pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
patacongo commented on PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#issuecomment-1487491570 Looks like this is trying to use the NuttX buildroot toolchain: /usr/bin/bash: arm-nuttx-eabi-gcc: command not found -- This is an automated message from the Apache G

[GitHub] [nuttx] pkarashchenko merged pull request #8920: risc-v/espressif: Fix NULL-dereferencing in WDT interrupt handling

2023-03-28 Thread via GitHub
pkarashchenko merged PR #8920: URL: https://github.com/apache/nuttx/pull/8920 -- 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] branch master updated: risc-v/espressif: Fix NULL-dereferencing in WDT interrupt handling

2023-03-28 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 The following commit(s) were added to refs/heads/master by this push: new f462be5365 risc-v/espressif: Fix NULL-dere

[GitHub] [nuttx-apps] pkarashchenko commented on pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
pkarashchenko commented on PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#issuecomment-1487496587 Some configs have it enabled, but CI changes the toolchain to either GNU_EABI or CLANG, so the actual build is done with one of those -- This is an automated message from the A

[GitHub] [nuttx-apps] pkarashchenko commented on pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
pkarashchenko commented on PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#issuecomment-1487497263 @xiaoxiang781216 could you please rebase PR? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[GitHub] [nuttx] acassis commented on a diff in pull request #8921: usbhost_hidkbd: Add the option to use interrupt transfers.

2023-03-28 Thread via GitHub
acassis commented on code in PR #8921: URL: https://github.com/apache/nuttx/pull/8921#discussion_r1151181433 ## drivers/usbhost/usbhost_hidkbd.c: ## @@ -977,6 +1023,332 @@ static inline void usbhost_encodescancode(FAR struct usbhost_state_s *priv, } #endif +/***

[GitHub] [nuttx] acassis commented on pull request #8921: usbhost_hidkbd: Add the option to use interrupt transfers.

2023-03-28 Thread via GitHub
acassis commented on PR #8921: URL: https://github.com/apache/nuttx/pull/8921#issuecomment-1487637310 Hi @ldube nice work improving the USB Keyboard, thank you! I suggested include the (void) because some compilers will complain about missing it. -- This is an automated message from the A

[GitHub] [nuttx] acassis merged pull request #8909: nrf53: add GPIOTE support (GPIO interrupts)

2023-03-28 Thread via GitHub
acassis merged PR #8909: URL: https://github.com/apache/nuttx/pull/8909 -- 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] 01/03: arch/nrf53: rename nrf53_gpioe.h to nrf53_gpiote.h

2023-03-28 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 commit 74b0e8c2c8b602495d87a0d76d63a969e7289edd Author: raiden00pl AuthorDate: Tue Mar 14 10:35:13 2023 +0100 arch/nrf53:

[nuttx] branch master updated (f462be5365 -> 6a2152aa44)

2023-03-28 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/nuttx.git from f462be5365 risc-v/espressif: Fix NULL-dereferencing in WDT interrupt handling new 74b0e8c2c8 arch/nrf53: rename

[nuttx] 03/03: boards/nrf5340-dk: add buttons example

2023-03-28 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 commit 6a2152aa44758e4cbb2eb58fb19de1ed9d5f789f Author: raiden00pl AuthorDate: Tue Mar 14 10:34:42 2023 +0100 boards/nrf53

[nuttx] 02/03: arch/nrf53: add GPIOTE support

2023-03-28 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 commit bcecf2023f90ea22ff0d5941c128706bb8a4314a Author: raiden00pl AuthorDate: Mon Mar 13 12:51:29 2023 +0100 arch/nrf53:

[GitHub] [nuttx] acassis merged pull request #8908: nrf53: add RTC and tickless support

2023-03-28 Thread via GitHub
acassis merged PR #8908: URL: https://github.com/apache/nuttx/pull/8908 -- 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] 01/03: arch/nrf53: add RTC support

2023-03-28 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 commit f9f41bbd95d7250e3d7505d81fcf8d1bbc95a29e Author: raiden00pl AuthorDate: Mon Mar 13 12:55:17 2023 +0100 arch/nrf53:

[nuttx] branch master updated (6a2152aa44 -> da47c468b8)

2023-03-28 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/nuttx.git from 6a2152aa44 boards/nrf5340-dk: add buttons example new f9f41bbd95 arch/nrf53: add RTC support new d23759d457

[nuttx] 03/03: boards/nrf5340-dk: add ostest_tickless configuration

2023-03-28 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 commit da47c468b8897ccaee18173512d6df523e439bc6 Author: raiden00pl AuthorDate: Thu Mar 16 10:01:55 2023 +0100 boards/nrf53

[nuttx] 02/03: arch/nrf53: add tickless support

2023-03-28 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 commit d23759d45719dc1bf4396e9203d43784eac67b5c Author: raiden00pl AuthorDate: Mon Mar 13 16:05:38 2023 +0100 arch/nrf53:

[GitHub] [nuttx] acassis merged pull request #8893: rndis: various fixes for composite

2023-03-28 Thread via GitHub
acassis merged PR #8893: URL: https://github.com/apache/nuttx/pull/8893 -- 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] 02/05: rndis: fix dev info init for composite

2023-03-28 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 commit 10f1d3e76e63c8d61a0a3631b53ef39d1a5bf222 Author: raiden00pl AuthorDate: Tue Mar 21 12:16:44 2023 +0100 rndis: fix d

[nuttx] 01/05: rndis: refactor usbdev_rndis_get_composite_devdesc to make it more like in other composite drivers

2023-03-28 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 commit 9b70e010dca45e0d2e449d9bed51b564ff09231f Author: raiden00pl AuthorDate: Tue Mar 21 10:16:59 2023 +0100 rndis: refac

[nuttx] 05/05: rndis: EP0 belongs to composite class if composite enabled

2023-03-28 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 commit bed53538e87453c329d4f62cd25dfea548b354d4 Author: raiden00pl AuthorDate: Thu Mar 23 12:55:29 2023 +0100 rndis: EP0 b

[nuttx] branch master updated (da47c468b8 -> bed53538e8)

2023-03-28 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/nuttx.git from da47c468b8 boards/nrf5340-dk: add ostest_tickless configuration new 9b70e010dc rndis: refactor usbdev_rndis_get_c

[nuttx] 04/05: rndis: exclude the logic that belongs to composite

2023-03-28 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 commit 8de219777365a88979fa65e826fd948d6ac14e8e Author: raiden00pl AuthorDate: Thu Mar 23 13:18:38 2023 +0100 rndis: exclu

[nuttx] 03/05: rndis: interface association descriptor should depend on CONFIG_COMPOSITE_IAD

2023-03-28 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 commit cb05700acfc9e2c90bbea6c28abb6d37f4e0103d Author: raiden00pl AuthorDate: Tue Mar 21 21:18:35 2023 +0100 rndis: inter

[GitHub] [nuttx] ldube commented on pull request #8921: usbhost_hidkbd: Add the option to use interrupt transfers.

2023-03-28 Thread via GitHub
ldube commented on PR #8921: URL: https://github.com/apache/nuttx/pull/8921#issuecomment-1487746207 Thanks @acassis . I was forced to fix this driver because my USB keyboard was refusing to work with hidkbd. -- This is an automated message from the Apache Git Service. To respond to the m

[nuttx-website] branch asf-site updated: Publishing web: b50f5ca4ed22743959c1160aab5dcc9ae18b3eff docs: bed53538e87453c329d4f62cd25dfea548b354d4

2023-03-28 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 74f934e7 Publishing web: b50f5ca4

[GitHub] [nuttx] lucasssvaz commented on a diff in pull request #8643: risc-v: SV32 MMU support for qemu-rv

2023-03-28 Thread via GitHub
lucasssvaz commented on code in PR #8643: URL: https://github.com/apache/nuttx/pull/8643#discussion_r1151293818 ## boards/risc-v/qemu-rv/rv-virt/configs/knsh32/defconfig: ## Review Comment: Please, normalize your defconfig by running `./tools/refresh.sh --silent rv-virt:kn

[GitHub] [nuttx] radek-pesina opened a new pull request, #8922: eMMC driver support

2023-03-28 Thread via GitHub
radek-pesina opened a new pull request, #8922: URL: https://github.com/apache/nuttx/pull/8922 ## Summary Extend sdmmc driver to add support for eMMC. ## Impact Upon detection/insertion of an SD/eMMC device, the driver now determines if it is talking to an SD card or eMMC and tak

[GitHub] [nuttx] g2gps commented on pull request #8247: tools/ci: Update docker to ubuntu 22.04

2023-03-28 Thread via GitHub
g2gps commented on PR #8247: URL: https://github.com/apache/nuttx/pull/8247#issuecomment-1487944462 > Yes, that's why I want to upgrade Ubuntu to 22.04 since we can get the new version of gcc automatically. I'm not sure if that is really going to help us in this situation. In theory,

[GitHub] [nuttx] xiaoxiang781216 commented on pull request #8247: tools/ci: Update docker to ubuntu 22.04

2023-03-28 Thread via GitHub
xiaoxiang781216 commented on PR #8247: URL: https://github.com/apache/nuttx/pull/8247#issuecomment-1487972294 > > Yes, that's why I want to upgrade Ubuntu to 22.04 since we can get the new version of gcc automatically. > > I'm not sure if that is really going to help us in this situat

[GitHub] [nuttx-apps] xiaoxiang781216 commented on pull request #1649: Add another batch of missing headers throughout the repository

2023-03-28 Thread via GitHub
xiaoxiang781216 commented on PR #1649: URL: https://github.com/apache/nuttx-apps/pull/1649#issuecomment-1487973935 @acassis from the policy, you can't merge the common code from the same company. -- This is an automated message from the Apache Git Service. To respond to the message, pleas

[GitHub] [nuttx-apps] xiaoxiang781216 commented on pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
xiaoxiang781216 commented on PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#issuecomment-1487976441 Done. -- 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-apps] davids5 commented on a diff in pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
davids5 commented on code in PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#discussion_r1151432282 ## include/graphics/twm4nx/twm4nx_config.hxx: ## @@ -448,7 +448,7 @@ */ #ifndef CONFIG_TWM4NX_INPUT_SIGNO -# define CONFIG_TWM4NX_INPUT_SIGNO 6 +# define CONF

[GitHub] [nuttx-apps] xiaoxiang781216 commented on a diff in pull request #1683: Minor signal fix found from https://github.com/apache/nuttx/pull/8900

2023-03-28 Thread via GitHub
xiaoxiang781216 commented on code in PR #1683: URL: https://github.com/apache/nuttx-apps/pull/1683#discussion_r1151438835 ## include/graphics/twm4nx/twm4nx_config.hxx: ## @@ -448,7 +448,7 @@ */ #ifndef CONFIG_TWM4NX_INPUT_SIGNO -# define CONFIG_TWM4NX_INPUT_SIGNO 6 +# def

[GitHub] [nuttx] davids5 commented on a diff in pull request #8922: eMMC driver support

2023-03-28 Thread via GitHub
davids5 commented on code in PR #8922: URL: https://github.com/apache/nuttx/pull/8922#discussion_r1151442701 ## drivers/mmcsd/mmcsd_sdio.c: ## @@ -2464,16 +2469,22 @@ static void mmcsd_mediachange(FAR void *arg) * *

[GitHub] [nuttx-apps] pkarashchenko commented on a diff in pull request #1687: system/cu: Move fd_std_tty, g_tio_std and g_tio_dev to cu_globals_s

2023-03-28 Thread via GitHub
pkarashchenko commented on code in PR #1687: URL: https://github.com/apache/nuttx-apps/pull/1687#discussion_r1151456308 ## system/cu/cu_main.c: ## @@ -291,15 +288,15 @@ int main(int argc, FAR char *argv[]) /* Initialize global data */ - memset(&g_cu, 0, sizeof(struct cu_

[GitHub] [nuttx] pkarashchenko commented on pull request #8247: tools/ci: Update docker to ubuntu 22.04

2023-03-28 Thread via GitHub
pkarashchenko commented on PR #8247: URL: https://github.com/apache/nuttx/pull/8247#issuecomment-1488027215 > Another possible method is we build Renesas toolchain in Ubuntu 18.04 and use it in Ubuntu 22.04. But most probably we will need to host binaries somewhere. Or create a GitH

[GitHub] [nuttx-apps] wangchen61698 closed pull request #1688: examples/ftpd: Add support for choosing address family

2023-03-28 Thread via GitHub
wangchen61698 closed pull request #1688: examples/ftpd: Add support for choosing address family URL: https://github.com/apache/nuttx-apps/pull/1688 -- 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 th

[GitHub] [nuttx] pkarashchenko commented on pull request #8247: tools/ci: Update docker to ubuntu 22.04

2023-03-28 Thread via GitHub
pkarashchenko commented on PR #8247: URL: https://github.com/apache/nuttx/pull/8247#issuecomment-1488028985 > but not good to simulator. @xiaoxiang781216 what do you mean? Do we used simulation of Renesas? Or you are talking that Renesas boards will be restricted to use C++ because of GCC

[GitHub] [nuttx-apps] wangchen61698 opened a new pull request, #1689: examples/ftpd: Add support for choosing address family

2023-03-28 Thread via GitHub
wangchen61698 opened a new pull request, #1689: URL: https://github.com/apache/nuttx-apps/pull/1689 ## Summary choose the network protocol (ipv4 or ipv6) to bind network in setting ftpd(default ipv6) ## Impact N/A ## Testing CI check before ap> ftpd_start