[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7389: Minor improvement for tools/ci/cibuild.sh

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7389: URL: https://github.com/apache/incubator-nuttx/pull/7389#discussion_r1007703308 ## tools/ci/cibuild.sh: ## @@ -37,7 +37,7 @@ EXTRA_PATH= case ${os} in Darwin) -install="python-tools u-boot-tools elf-toolchain gen-romfs kcon

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #7450: mempool: support multiple-mempool and enhance mempool

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7450: URL: https://github.com/apache/incubator-nuttx/pull/7450#issuecomment-1294522158 What are the plans of usage for the multiple mempools? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and u

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449#discussion_r1007689162 ## mm/mm_heap/mm.h: ## @@ -60,38 +61,14 @@ * minor performance losses. */ +#define MM_MIN_SHIFT (LOG2_CEIL(sizeof(struct mm_freenode_s))) Re

[incubator-nuttx] branch master updated: net: Remove the unused nx_[send|recv]msg

2022-10-27 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 1047b65ab5 net: Remove the unuse

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #7452: net: Remove the unused nx_[send|recv]msg

2022-10-27 Thread GitBox
pkarashchenko merged PR #7452: URL: https://github.com/apache/incubator-nuttx/pull/7452 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr

[incubator-nuttx] branch master updated: net: move device buffer define to common header

2022-10-27 Thread hartmannathan
This is an automated email from the ASF dual-hosted git repository. hartmannathan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new a8d3286258 net: move device buff

[GitHub] [incubator-nuttx] zouboan commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
zouboan commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1007600274 ## arch/sparc/src/s698pm/s698pm-serial.c: ## @@ -0,0 +1,1037 @@ +/ + * arch/sparc/sr

[GitHub] [incubator-nuttx] hartmannathan merged pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
hartmannathan merged PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431 -- 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] [incubator-nuttx] zouboan commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
zouboan commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1007600194 ## arch/sparc/src/s698pm/s698pm-serial.c: ## @@ -0,0 +1,1037 @@ +/ + * arch/sparc/sr

[GitHub] [incubator-nuttx] zouboan commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
zouboan commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1007585797 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) { tc

[GitHub] [incubator-nuttx] Gary-Hobson opened a new pull request, #7457: Check for memory leaks in tasks

2022-10-27 Thread GitBox
Gary-Hobson opened a new pull request, #7457: URL: https://github.com/apache/incubator-nuttx/pull/7457 ## Summary Print all unreleased memory blocks when the task exits ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7389: Minor improvement for tools/ci/cibuild.sh

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7389: URL: https://github.com/apache/incubator-nuttx/pull/7389#issuecomment-1294404879 > Seems like permission change cause an issue on CI: `/bin/bash: line 10: ./cibuild.sh: Permission denied` It's strange, cibuild.sh still has execution permission in

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request, #7456: sched/semaphore: add the wdog judge before cancel

2022-10-27 Thread GitBox
xiaoxiang781216 opened a new pull request, #7456: URL: https://github.com/apache/incubator-nuttx/pull/7456 ## Summary to avoid entering critical again in wd_cancel when wdog not actived. But when the wdog is actived, may add more judge ## Impact Improve the speed ## Testi

[GitHub] [incubator-nuttx] Donny9 commented on a diff in pull request #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
Donny9 commented on code in PR #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449#discussion_r1007562531 ## include/nuttx/lib/math32.h: ## @@ -29,6 +29,35 @@ #include +/ + * Pre-proces

[GitHub] [incubator-nuttx] Donny9 commented on a diff in pull request #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
Donny9 commented on code in PR #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449#discussion_r1007562451 ## include/nuttx/lib/math32.h: ## @@ -29,6 +29,35 @@ #include +/ + * Pre-proces

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7434: Refine the implementation of files_allocate

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7434: URL: https://github.com/apache/incubator-nuttx/pull/7434#discussion_r1007557617 ## fs/inode/fs_files.c: ## @@ -225,17 +235,24 @@ int files_allocate(FAR struct inode *inode, int oflags, off_t pos, /* The space of file array isn't

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7454: sched: remove the unused function nx_wait and nx_waitid

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7454: URL: https://github.com/apache/incubator-nuttx/pull/7454#issuecomment-1294364013 > Seems that kernel part still use it > > ``` > task/task_spawn.c: In function 'task_spawn': > Error: task/task_spawn.c:425:9: error: implicit declaration of f

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7454: Revert "sched: add nx_wait, nx_waitid and nx_waitpid"

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7454: URL: https://github.com/apache/incubator-nuttx/pull/7454#discussion_r1007546573 ## sched/sched/sched_waitpid.c: ## @@ -445,164 +586,24 @@ pid_t nx_waitpid(pid_t pid, int *stat_loc, int options) } } - /* On success,

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7455: libs/libc/time: fix regression in clock_calendar2utc

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7455: URL: https://github.com/apache/incubator-nuttx/pull/7455 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[incubator-nuttx] branch master updated (6940ca8677 -> 6908b6823c)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 6940ca8677 fs: Remove the duplication umount macro add 6908b6823c libs/libc/time: fix regression in c

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7452: net: Remove the unused nx_[send|recv]msg

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7452: URL: https://github.com/apache/incubator-nuttx/pull/7452#issuecomment-1294354471 kernel code should call psock_* API(e.g. psock_send[msg]/psock_recv[msg]) like file_xxx for fs. -- This is an automated message from the Apache Git Service. To respond t

[GitHub] [incubator-nuttx] hartmannathan commented on pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
hartmannathan commented on PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#issuecomment-1294349768 > @hartmannathan please approve if you do not have other comments, so we can move forward with merge Reviewing now... -- This is an automated message from the Apach

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #7454: Revert "sched: add nx_wait, nx_waitid and nx_waitpid"

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7454: URL: https://github.com/apache/incubator-nuttx/pull/7454#issuecomment-1294078997 Seems that kernel part still use it ``` task/task_spawn.c: In function 'task_spawn': Error: task/task_spawn.c:425:9: error: implicit declaration of function 'nx_wai

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7446: Files for pysimCoder on nucleo-h743zi2

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7446: URL: https://github.com/apache/incubator-nuttx/pull/7446#discussion_r1007385278 ## boards/arm/stm32h7/nucleo-h743zi2/src/stm32_adc.c: ## @@ -0,0 +1,219 @@ +/

[incubator-nuttx] 05/06: fs: Remove the unused nx_pipe to prefer file_pipe for kernel

2022-10-27 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/incubator-nuttx.git commit 19bded4738374413863103f803f14b16bb50a63a Author: Xiang Xiao AuthorDate: Thu Oct 27 02:02:09 2022 +0800

[incubator-nuttx] 01/06: fs: Remove the unused nx_[v]ioctl to prefer file_[v]ioctl for kernel

2022-10-27 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/incubator-nuttx.git commit aa31648c9f0bde84c9881dfbfd70760a3fe2192a Author: Xiang Xiao AuthorDate: Wed Oct 26 13:40:18 2022 +0800

[incubator-nuttx] 02/06: fs: Remove the unused nx_poll to prefer file_poll for kernel

2022-10-27 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/incubator-nuttx.git commit cf21319d3abca30221d53937d6a36dc86976ccf7 Author: Xiang Xiao AuthorDate: Wed Oct 26 13:50:25 2022 +0800

[incubator-nuttx] 06/06: fs: Remove the duplication umount macro

2022-10-27 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/incubator-nuttx.git commit 6940ca8677b4f5a1e56b86cf0285f6a6cb3a Author: Xiang Xiao AuthorDate: Thu Oct 27 02:41:02 2022 +0800

[incubator-nuttx] 03/06: fs: Remove the unused nx_dup to prefer file_dup for kernel

2022-10-27 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/incubator-nuttx.git commit b22cc1e2b8661ec8e96717c082d2a1acc8449b56 Author: Xiang Xiao AuthorDate: Wed Oct 26 17:28:39 2022 +0800

[incubator-nuttx] branch master updated (06d0dbc927 -> 6940ca8677)

2022-10-27 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 06d0dbc927 esp32c3-devkit-rust-1: Remove not needed -msmall-data-limit=0 compilation flag new aa

[incubator-nuttx] 04/06: fs: Remove the unused nx_fcntl to prefer file_fcntl for kernel

2022-10-27 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/incubator-nuttx.git commit fc1efe2c0b3c307b58b00fcdfd03d0b639f6ff71 Author: Xiang Xiao AuthorDate: Thu Oct 27 01:36:45 2022 +0800

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #7437: fs: remove the unused nx_xxx functions

2022-10-27 Thread GitBox
pkarashchenko merged PR #7437: URL: https://github.com/apache/incubator-nuttx/pull/7437 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr

[incubator-nuttx] branch master updated (153060d34d -> 06d0dbc927)

2022-10-27 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 153060d34d Update errno to match asm-generic add 09d5919563 esp32c3-devkit: Remove not needed -ms

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #7453: esp32c3: remove not needed ldscript flags

2022-10-27 Thread GitBox
pkarashchenko merged PR #7453: URL: https://github.com/apache/incubator-nuttx/pull/7453 -- 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] [incubator-nuttx] pkarashchenko commented on pull request #7389: Minor improvement for tools/ci/cibuild.sh

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7389: URL: https://github.com/apache/incubator-nuttx/pull/7389#issuecomment-1294055000 Seems like permission change cause an issue on CI: `/bin/bash: line 10: ./cibuild.sh: Permission denied` -- This is an automated message from the Apache Git Service. To re

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#issuecomment-1294053451 @hartmannathan please approve if you do not have other comments, so we can move forward with merge -- This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7434: Refine the implementation of files_allocate

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7434: URL: https://github.com/apache/incubator-nuttx/pull/7434#discussion_r1007366350 ## fs/inode/fs_files.c: ## @@ -225,17 +235,24 @@ int files_allocate(FAR struct inode *inode, int oflags, off_t pos, /* The space of file array isn't e

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449#discussion_r1007362994 ## include/nuttx/lib/math32.h: ## @@ -29,6 +29,35 @@ #include +/ + * Pre

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #7440: libs/libc/time: mktime normalize struct tm

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7440: URL: https://github.com/apache/incubator-nuttx/pull/7440#issuecomment-1294042561 @fjpanag I found the root cause. It is fixed in https://github.com/apache/incubator-nuttx/pull/7455 -- This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-nuttx] pkarashchenko opened a new pull request, #7455: libs/libc/time: fix regression in clock_calendar2utc

2022-10-27 Thread GitBox
pkarashchenko opened a new pull request, #7455: URL: https://github.com/apache/incubator-nuttx/pull/7455 ## Summary Fix regression after https://github.com/apache/incubator-nuttx/pull/7440/commits/fbe471b99cbcbdf9c96b5fa255a801bfd6a80996 ## Impact Bugfix ## Testing Syn

[incubator-nuttx-apps] branch master updated: Fix Error: ftpd.c:1773:9: error: variable 'pos' set but not used [-Werror,-Wunused-but-set-variable]

2022-10-27 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/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new d52a8298c Fix Error: ftpd.c

[GitHub] [incubator-nuttx-apps] pkarashchenko merged pull request #1386: Fix Error: ftpd.c:1773:9: error: variable 'pos' set but not used [-Werror,-Wunused-but-set-variable]

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

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7454: Revert "sched: add nx_wait, nx_waitid and nx_waitpid"

2022-10-27 Thread GitBox
pkarashchenko commented on code in PR #7454: URL: https://github.com/apache/incubator-nuttx/pull/7454#discussion_r1007236474 ## sched/sched/sched_waitpid.c: ## @@ -445,164 +586,24 @@ pid_t nx_waitpid(pid_t pid, int *stat_loc, int options) } } - /* On success, re

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7420: Update errno to match asm-generic

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7420: URL: https://github.com/apache/incubator-nuttx/pull/7420 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[incubator-nuttx] branch master updated: Update errno to match asm-generic

2022-10-27 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 153060d34d Update errno to match asm

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request, #7454: Revert "sched: add nx_wait, nx_waitid and nx_waitpid"

2022-10-27 Thread GitBox
xiaoxiang781216 opened a new pull request, #7454: URL: https://github.com/apache/incubator-nuttx/pull/7454 ## Summary This reverts commit de2a9d8a771ac4434d94a654e2b60c4fd0de19a1. ## Impact Remove the unused nx_wait[id|pid] ## Testing Pass CI -- This is an automa

[GitHub] [incubator-nuttx] acassis commented on pull request #7448: Added DHCSR definitions for ARMv7 & ARMv8.

2022-10-27 Thread GitBox
acassis commented on PR #7448: URL: https://github.com/apache/incubator-nuttx/pull/7448#issuecomment-1293876781 @fjpanag please fix these redefinition errors: ``` In file included from chip/stm32l5_irq.c:36: /github/workspace/sources/nuttx/arch/arm/src/armv8-m/nvic.h:812: error: "NV

[GitHub] [incubator-nuttx] pkarashchenko commented on pull request #7440: libs/libc/time: mktime normalize struct tm

2022-10-27 Thread GitBox
pkarashchenko commented on PR #7440: URL: https://github.com/apache/incubator-nuttx/pull/7440#issuecomment-1293864550 Ok. Let me take a look tomorrow. If I will not be able to narrow down the issue, then we will revert the change until I find a riot cause -- This is an automated message f

[incubator-nuttx] branch master updated (f56710c121 -> 4d164bb995)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from f56710c121 rpmsgblk: rpmsg block device support add 4d164bb995 doc: Add and fix Secure Boot and Flash

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7451: doc: Add and fix Secure Boot and Flash Encryption section for ESP boards

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7451: URL: https://github.com/apache/incubator-nuttx/pull/7451 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[incubator-nuttx] branch master updated: rpmsgblk: rpmsg block device support

2022-10-27 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new f56710c121 rpmsgblk: rpmsg block dev

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7442: rpmsgblk: rpmsg block device support

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7442: URL: https://github.com/apache/incubator-nuttx/pull/7442 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[GitHub] [incubator-nuttx] fjpanag commented on pull request #7440: libs/libc/time: mktime normalize struct tm

2022-10-27 Thread GitBox
fjpanag commented on PR #7440: URL: https://github.com/apache/incubator-nuttx/pull/7440#issuecomment-1293778145 @pkarashchenko This commit made our internal tests fail. Specifically, I am running the Lua v5.2 test suite and it gives me the following message: ``` /mnt/sdcard0

[GitHub] [incubator-nuttx] acassis opened a new pull request, #7453: esp32c3: remove not needed ldscript flags

2022-10-27 Thread GitBox
acassis opened a new pull request, #7453: URL: https://github.com/apache/incubator-nuttx/pull/7453 ## Summary Remove not needed ldscript flags ## Impact Simplify LD Scripts ## Testing esp32c3-devkit -- This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7446: Files for pysimCoder on nucleo-h743zi2

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7446: URL: https://github.com/apache/incubator-nuttx/pull/7446#issuecomment-1293750717 @robertobucher please squash your patch into the reasonable set by: git rebase --interactive HEAD~5 and change pick to squash -- This is an automated message from t

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request, #7452: net: Remove the unused nx_[send|recv]msg

2022-10-27 Thread GitBox
xiaoxiang781216 opened a new pull request, #7452: URL: https://github.com/apache/incubator-nuttx/pull/7452 ## Summary ## 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

[GitHub] [incubator-nuttx] robertobucher commented on a diff in pull request #7446: Files for pysimCoder on nucleo-h743zi2

2022-10-27 Thread GitBox
robertobucher commented on code in PR #7446: URL: https://github.com/apache/incubator-nuttx/pull/7446#discussion_r1007087369 ## boards/arm/stm32h7/nucleo-h743zi2/include/board.h: ## @@ -390,8 +390,14 @@ #define GPIO_TIM1_CH2OUT GPIO_TIM1_CH2OUT_2 /* PE11 - D5 */ #define GPIO

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7437: fs: remove the unused nx_xxx functions

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7437: URL: https://github.com/apache/incubator-nuttx/pull/7437#issuecomment-1293724285 how about this simple patch @pkarashchenko ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the U

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7446: Files for pysimCoder on nucleo-h743zi2

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7446: URL: https://github.com/apache/incubator-nuttx/pull/7446#discussion_r1007061851 ## boards/arm/stm32h7/nucleo-h743zi2/include/board.h: ## @@ -390,8 +390,14 @@ #define GPIO_TIM1_CH2OUT GPIO_TIM1_CH2OUT_2 /* PE11 - D5 */ #define GP

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7446: Files for pysimCoder on nucleo-h743zi2

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7446: URL: https://github.com/apache/incubator-nuttx/pull/7446#discussion_r1007059503 ## boards/arm/stm32h7/nucleo-h743zi2/src/stm32_pwm.c: ## @@ -0,0 +1,114 @@ +/***

[incubator-nuttx] branch master updated (05d40eeeff -> 2a20db7697)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 05d40eeeff net: Remove the unused nx_recv[from] to prefer psock_recv[from] for kernel add 2a20db7697

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7447: xtensa: Define COMMON_CTX_REGS for chips without FPU (e.g. ESP32-S2)

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7447: URL: https://github.com/apache/incubator-nuttx/pull/7447 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[GitHub] [incubator-nuttx] gustavonihei commented on a diff in pull request #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
gustavonihei commented on code in PR #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449#discussion_r1007044127 ## include/nuttx/lib/math32.h: ## @@ -29,6 +29,35 @@ #include +/ + * Pre-

[incubator-nuttx] branch master updated (fdff92fd19 -> 05d40eeeff)

2022-10-27 Thread pkarashchenko
This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from fdff92fd19 libs/libc/time: mktime normalize struct tm add 3e982b6556 net: Remove the unused nx_se

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #7438: socket: Remove the unused nx_xxx functions

2022-10-27 Thread GitBox
pkarashchenko merged PR #7438: URL: https://github.com/apache/incubator-nuttx/pull/7438 -- 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] [incubator-nuttx] lucasssvaz opened a new pull request, #7451: doc: Add and fix Secure Boot and Flash Encryption section for ESP boards

2022-10-27 Thread GitBox
lucasssvaz opened a new pull request, #7451: URL: https://github.com/apache/incubator-nuttx/pull/7451 ## Summary Add missing "Secure Boot and Flash Encryption" section to ESP32-C3 documentation. Also fix this section of ESP32 and ESP32-S2 documentations. ## Impact Imp

[GitHub] [incubator-nuttx] Donny9 opened a new pull request, #7450: mempool: support multiple-mempool and enhance mempool

2022-10-27 Thread GitBox
Donny9 opened a new pull request, #7450: URL: https://github.com/apache/incubator-nuttx/pull/7450 ## Summary 1. support multiple-mempool, it includes a series of mempool. 2. support custom alloc and free api about the mempool. 3. do realloc and alloc_size about the mempool. 4. ad

[GitHub] [incubator-nuttx] acassis commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
acassis commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006931732 ## arch/sparc/src/s698pm/chip.h: ## @@ -0,0 +1,48 @@ +/ + * arch/sparc/src/s698pm/ch

[GitHub] [incubator-nuttx] anchao commented on a diff in pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
anchao commented on code in PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#discussion_r1006923597 ## arch/arm/src/lpc54xx/lpc54_ethernet.c: ## @@ -934,6 +933,8 @@ static void lpc54_eth_reply(struct lpc54_ethdriver_s *priv) static void lpc54_eth_rxdispatch(

[GitHub] [incubator-nuttx] Donny9 opened a new pull request, #7449: mm/mm_heap: optimize MM_XX_SHIFT define

2022-10-27 Thread GitBox
Donny9 opened a new pull request, #7449: URL: https://github.com/apache/incubator-nuttx/pull/7449 ## Summary 1. using LOG2_CEIL to calc MM_MIN_SHIFT/MM_MAX_SHIFT at compile time. 2. define MM_MASK_BIT to optimze code when using more significant bit of member preceding in furure. ##

[GitHub] [incubator-nuttx] fjpanag commented on a diff in pull request #7448: Added DHCSR definitions for ARMv7 & ARMv8.

2022-10-27 Thread GitBox
fjpanag commented on code in PR #7448: URL: https://github.com/apache/incubator-nuttx/pull/7448#discussion_r1006904777 ## arch/arm/src/armv7-m/nvic.h: ## @@ -694,6 +694,20 @@ # define NVIC_CPACR_CP_PRIV(n) (1 << NVIC_CPACR_CP_SHIFT(n)) # define NVIC_CPACR_CP_FULL(n)

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #7438: socket: Remove the unused nx_xxx functions

2022-10-27 Thread GitBox
xiaoxiang781216 commented on PR #7438: URL: https://github.com/apache/incubator-nuttx/pull/7438#issuecomment-1293551938 @acassis could you 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 t

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006895682 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) {

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006895682 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) {

[GitHub] [incubator-nuttx] acassis commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
acassis commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006889597 ## arch/sparc/Kconfig: ## @@ -32,6 +32,19 @@ config ARCH_CHIP_BM3823 ---help--- Microchip BM3823 (ARCH_SPARC_V8) +config ARCH_CHIP_S69

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7440: libs/libc/time: mktime normalize struct tm

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7440: URL: https://github.com/apache/incubator-nuttx/pull/7440 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[GitHub] [incubator-nuttx] xiaoxiang781216 closed issue #6832: mktime() does not "normalize" struct tm argument

2022-10-27 Thread GitBox
xiaoxiang781216 closed issue #6832: mktime() does not "normalize" struct tm argument URL: https://github.com/apache/incubator-nuttx/issues/6832 -- 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 sp

[incubator-nuttx] branch master updated (fd07e7b012 -> fdff92fd19)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from fd07e7b012 openamp: fix rptun don't wait issue when get tx patyload buffer add fdff92fd19 libs/libc/

[incubator-nuttx] branch master updated (2156a102cf -> fd07e7b012)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from 2156a102cf fix bl602 i2c sem init mistake add fd07e7b012 openamp: fix rptun don't wait issue when get

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7444: openamp: fix rptun don't wait issue when get tx patyload buffer

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7444: URL: https://github.com/apache/incubator-nuttx/pull/7444 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7445: fix bl602 i2c sem init mistake

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7445: URL: https://github.com/apache/incubator-nuttx/pull/7445 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

[incubator-nuttx] branch master updated: fix bl602 i2c sem init mistake

2022-10-27 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/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 2156a102cf fix bl602 i2c sem init mi

[incubator-nuttx-apps] branch master updated: Fixed compiler warning in webclient.

2022-10-27 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/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 390f1e2c6 Fixed compiler warnin

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #1388: Fixed compiler warning in webclient.

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

[GitHub] [incubator-nuttx] hartmannathan commented on a diff in pull request #7448: Added DHCSR definitions for ARMv7 & ARMv8.

2022-10-27 Thread GitBox
hartmannathan commented on code in PR #7448: URL: https://github.com/apache/incubator-nuttx/pull/7448#discussion_r1006846995 ## arch/arm/src/armv7-m/nvic.h: ## @@ -694,6 +694,20 @@ # define NVIC_CPACR_CP_PRIV(n) (1 << NVIC_CPACR_CP_SHIFT(n)) # define NVIC_CPACR_CP_FU

[GitHub] [incubator-nuttx] hartmannathan commented on a diff in pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
hartmannathan commented on code in PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#discussion_r1006823472 ## arch/arm/src/tiva/lm/lm3s_ethernet.c: ## @@ -675,10 +671,11 @@ static int tiva_txpoll(struct net_driver_s *dev) static void tiva_receive(struct tiva

[GitHub] [incubator-nuttx] CV-Bowen commented on a diff in pull request #7442: rpmsgblk: rpmsg block device support

2022-10-27 Thread GitBox
CV-Bowen commented on code in PR #7442: URL: https://github.com/apache/incubator-nuttx/pull/7442#discussion_r1006814314 ## boards/sim/sim/sim/src/sim_bringup.c: ## @@ -231,6 +236,16 @@ int sim_bringup(void) } #endif +#if !defined(CONFIG_DISABLE_MOUNTPOINT) && defined(CON

[GitHub] [incubator-nuttx] zouboan commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
zouboan commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006811967 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) { tc

[GitHub] [incubator-nuttx] fjpanag commented on a diff in pull request #7436: arm: Added breakpoint in stack overflow trap.

2022-10-27 Thread GitBox
fjpanag commented on code in PR #7436: URL: https://github.com/apache/incubator-nuttx/pull/7436#discussion_r1006809729 ## arch/arm/src/armv8-m/arm_stackcheck.c: ## @@ -69,6 +69,12 @@ void __stack_overflow_trap(void) uint32_t regval; + regval = getreg32(NVIC_DHCSR); + if

[GitHub] [incubator-nuttx] fjpanag opened a new pull request, #7448: Added DHCSR definitions for ARMv7 & ARMv8.

2022-10-27 Thread GitBox
fjpanag opened a new pull request, #7448: URL: https://github.com/apache/incubator-nuttx/pull/7448 ## Summary Adds DHCSR register definitions for ARMv7 & ARMv8. References: * ARMv7: https://developer.arm.com/documentation/ddi0337/e/CEGCJAHJ * ARMv8: http://kib.kiev.ua/x8

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006804359 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) {

[GitHub] [incubator-nuttx] zouboan commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
zouboan commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006802268 ## arch/sparc/src/sparc_v8/up_initialstate.c: ## @@ -71,7 +71,7 @@ void up_initial_state(struct tcb_s *tcb) if (tcb->pid == IDLE_PROCESS_ID) { tc

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7443: arch/sparc: add initial support for S698PM chip and SMP

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7443: URL: https://github.com/apache/incubator-nuttx/pull/7443#discussion_r1006793124 ## arch/sparc/src/common/up_initialize.c: ## @@ -130,6 +140,19 @@ static inline void up_color_intstack(void) void up_initialize(void) { +#ifdef CONF

[GitHub] [incubator-nuttx] anchao commented on a diff in pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
anchao commented on code in PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#discussion_r1006792591 ## net/mld/mld_send.c: ## @@ -61,17 +61,16 @@ /* Buffer layout */ -#define IPv6BUF ((FAR struct ipv6_hdr_s *)&dev->d_buf[NET_LL_HDRLEN(dev)]) #define R

[GitHub] [incubator-nuttx] gustavonihei opened a new pull request, #7447: xtensa: Define COMMON_CTX_REGS for chips without FPU (e.g. ESP32-S2)

2022-10-27 Thread GitBox
gustavonihei opened a new pull request, #7447: URL: https://github.com/apache/incubator-nuttx/pull/7447 ## Summary This PR intends to fix `CONFIG_DEBUG_TCBINFO` support for chips that don't provide an FPU due to missing definition of `COMMON_CTX_REGS`. ```shell common/xtensa_tcb

[GitHub] [incubator-nuttx] anchao commented on pull request #7431: net: move IPv4/6BUF define to common header

2022-10-27 Thread GitBox
anchao commented on PR #7431: URL: https://github.com/apache/incubator-nuttx/pull/7431#issuecomment-1293397339 > Please fix style issues Thank you, all addressed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #7442: rpmsgblk: rpmsg block device support

2022-10-27 Thread GitBox
xiaoxiang781216 commented on code in PR #7442: URL: https://github.com/apache/incubator-nuttx/pull/7442#discussion_r1006753965 ## boards/sim/sim/sim/src/sim_bringup.c: ## @@ -231,6 +236,16 @@ int sim_bringup(void) } #endif +#if !defined(CONFIG_DISABLE_MOUNTPOINT) && defi

[GitHub] [incubator-nuttx] davids5 commented on a diff in pull request #7436: arm: Added breakpoint in stack overflow trap.

2022-10-27 Thread GitBox
davids5 commented on code in PR #7436: URL: https://github.com/apache/incubator-nuttx/pull/7436#discussion_r1006751444 ## arch/arm/src/armv7-m/arm_stackcheck.c: ## @@ -69,6 +69,12 @@ void __stack_overflow_trap(void) uint32_t regval; + regval = getreg32(NVIC_DHCSR); Revi

[incubator-nuttx] branch master updated (facdd4f2b9 -> 29be2481e9)

2022-10-27 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git from facdd4f2b9 esp32[-s2/-s3/-c3]: Re-sort SPI Flash configs add 29be2481e9 drivers/timers/capture: Fix m

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #7441: drivers/timers/capture: Fix mutual exclusion lock

2022-10-27 Thread GitBox
xiaoxiang781216 merged PR #7441: URL: https://github.com/apache/incubator-nuttx/pull/7441 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubs

  1   2   >