[GitHub] [incubator-nuttx] anjiahao1 opened a new pull request #4695: mq_open: add long file name check and parameter check

2021-10-18 Thread GitBox
anjiahao1 opened a new pull request #4695: URL: https://github.com/apache/incubator-nuttx/pull/4695 ## Summary add long file name check and parameter check ## Impact ## Testing dailytest -- This is an automated message from the Apache Git Service. To respond to the mes

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946413371 > > > > > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". > > > > > > > > > > > > IS

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
xiaoxiang781216 commented on a change in pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#discussion_r731506736 ## File path: include/sys/types.h ## @@ -230,8 +230,10 @@ typedef uint16_t sa_family_t; #ifdef CONFIG_SYSTEM_TIME64 typedef uint64

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #4683: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 Thread GitBox
xiaoxiang781216 merged pull request #4683: URL: https://github.com/apache/incubator-nuttx/pull/4683 -- 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

[incubator-nuttx] branch master updated: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 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 b513456 arch:xtens:mpu: modify acc

[incubator-nuttx] branch master updated: littlefs:fix rmdir can remove a file

2021-10-18 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 9b52e4e littlefs:fix rmdir can remo

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #4694: littlefs:fix rmdir can remove a file

2021-10-18 Thread GitBox
xiaoxiang781216 merged pull request #4694: URL: https://github.com/apache/incubator-nuttx/pull/4694 -- 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

[GitHub] [incubator-nuttx] yamt commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946370843 > > > > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". > > > > > > > > > ISO-C allow signed or

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946366697 > > > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". > > > > > > ISO-C allow signed

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946364664 > This will break several architectures that do not support 64-bit long long types. This includes _all_ of the ZiLOG architectures. This logic all needs to condi

[GitHub] [incubator-nuttx] yamt edited a comment on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt edited a comment on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946357628 > > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". > > ISO-C allow signed or unsigned time_

[GitHub] [incubator-nuttx] yamt commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946357628 > > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". > > ISO-C allow signed or unsigned time_t, but

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
patacongo commented on a change in pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#discussion_r731484565 ## File path: include/sys/types.h ## @@ -230,8 +230,10 @@ typedef uint16_t sa_family_t; #ifdef CONFIG_SYSTEM_TIME64 typedef uint64_t

[GitHub] [incubator-nuttx] patacongo commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
patacongo commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946356929 This will break several architectures that do not support 64-bit long long types. This includes *all* of the ZiLOG architectures. This logic all needs to conditioned

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946353572 > as far as i know, unsigned time_t is allowed by posix. this change requires more explanation than "follow posix". ISO-C allow signed or unsigned time_t,

[GitHub] [incubator-nuttx-apps] coffee809721232 opened a new pull request #862: dhcpc abnormal block

2021-10-18 Thread GitBox
coffee809721232 opened a new pull request #862: URL: https://github.com/apache/incubator-nuttx-apps/pull/862 The logic changes are as follows: 1、Loop sending the DISCOVER up to CONFIG_NETUTILS_DHCPC_RETRIES times and exit if failure 2、Loop sending the REQUEST up to CONFIG_NETUTIL

[GitHub] [incubator-nuttx] anjiahao1 edited a comment on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 edited a comment on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946345549 > > > > > > follow posix,use int64_t inside of time_t > > > > > > > > > > > > > > > which part of posix? > > > > > > > > > > > > clock_setti

[GitHub] [incubator-nuttx] anjiahao1 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946345549 > > > > > > follow posix,use int64_t inside of time_t > > > > > > > > > > > > > > > which part of posix? > > > > > > > > > > > > clock_settime(cloc

[GitHub] [incubator-nuttx] anjiahao1 removed a comment on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 removed a comment on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946345372 yse,i use `man p clock_settime` see `EINVAL (clock_settime()): tp.tv_sec is negative or tp.tv_nsec is outside the range [0..999,999,999].` -- This is an

[GitHub] [incubator-nuttx] anjiahao1 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946345372 yse,i use `man p clock_settime` see `EINVAL (clock_settime()): tp.tv_sec is negative or tp.tv_nsec is outside the range [0..999,999,999].` -- This is an automat

[GitHub] [incubator-nuttx] yamt commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946341854 > > > > > follow posix,use int64_t inside of time_t > > > > > > > > > > > > which part of posix? > > > > > > > > > clock_settime(clockid_t clock_id, FAR

[GitHub] [incubator-nuttx] anjiahao1 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946337112 > > > > follow posix,use int64_t inside of time_t > > > > > > > > > which part of posix? > > > > > > clock_settime(clockid_t clock_id, FAR const st

[GitHub] [incubator-nuttx] anjiahao1 opened a new pull request #4694: littlefs:fix rmdir can remove a file

2021-10-18 Thread GitBox
anjiahao1 opened a new pull request #4694: URL: https://github.com/apache/incubator-nuttx/pull/4694 ## Summary fix bug ,rmdir can remove a file ## Impact ## Testing dailytest -- This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-nuttx] yamt commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946335244 > > > follow posix,use int64_t inside of time_t > > > > > > which part of posix? > > clock_settime(clockid_t clock_id, FAR const struct timespec *tp) >

[GitHub] [incubator-nuttx] anjiahao1 commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946334428 > > follow posix,use int64_t inside of time_t > > which part of posix? clock_settime(clockid_t clock_id, FAR const struct timespec *tp) if use a `tp

[GitHub] [incubator-nuttx] yamt commented on pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
yamt commented on pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693#issuecomment-946330813 > follow posix,use int64_t inside of time_t which part of posix? -- This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4687: fs/partition: Make read_partition_block callable outside ptable

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4687: URL: https://github.com/apache/incubator-nuttx/pull/4687#issuecomment-946330543 > LGTM. Not related to this PR, but shouldn't `parse_ptable_partition` also be declared on `fs/partition/partition.h`? The declaration is currently in `fs/partit

[GitHub] [incubator-nuttx] anjiahao1 opened a new pull request #4693: time:follow POSIX use int64_t to define time_t

2021-10-18 Thread GitBox
anjiahao1 opened a new pull request #4693: URL: https://github.com/apache/incubator-nuttx/pull/4693 ## Summary follow posix,use int64_t inside of time_t ## Impact ## Testing dailytest -- This is an automated message from the Apache Git Service. To respond to the messag

[GitHub] [incubator-nuttx] anjiahao1 closed pull request #4692: use int64_t define time_t

2021-10-18 Thread GitBox
anjiahao1 closed pull request #4692: URL: https://github.com/apache/incubator-nuttx/pull/4692 -- 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: comm

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #4690: bcm43xxx: supported high-speed timing mode with a clock rate up to 50MHz

2021-10-18 Thread GitBox
xiaoxiang781216 merged pull request #4690: URL: https://github.com/apache/incubator-nuttx/pull/4690 -- 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

[incubator-nuttx] branch master updated (9e60c33 -> 6bdc737)

2021-10-18 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 9e60c33 binfmt: Remove umm_initialize from elf_load add 6bdc737 bcm43xxx: supported high-speed tim

[GitHub] [incubator-nuttx] anjiahao1 opened a new pull request #4692: use int64_t inside of time_t

2021-10-18 Thread GitBox
anjiahao1 opened a new pull request #4692: URL: https://github.com/apache/incubator-nuttx/pull/4692 ## Summary follow posix,use int64_t inside of time_t ## Impact ## Testing dailytest -- This is an automated message from the Apache Git Service. To respond to the messag

[GitHub] [incubator-nuttx-apps] anjiahao1 opened a new pull request #861: echo: support echo opthon -e

2021-10-18 Thread GitBox
anjiahao1 opened a new pull request #861: URL: https://github.com/apache/incubator-nuttx-apps/pull/861 Signed-off-by: anjiahao ## Summary user can use echo to print escape character ## Impact ## Testing dailytest -- This is an automated message from the Apache

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #4691: driver/sensor: support new sensor type

2021-10-18 Thread GitBox
Donny9 opened a new pull request #4691: URL: https://github.com/apache/incubator-nuttx/pull/4691 ## Summary 1. support new sensor type:ECG,PPG,Imdepance 2. GPS latitude and longitude format: transform ddmm. to dd.mm. ## Impact N/A ## Testing daily test --

[GitHub] [incubator-nuttx] gustavonihei merged pull request #4667: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread GitBox
gustavonihei merged pull request #4667: URL: https://github.com/apache/incubator-nuttx/pull/4667 -- 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: c

[incubator-nuttx] branch master updated: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread gustavonihei
This is an automated email from the ASF dual-hosted git repository. gustavonihei 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 9e60c33 binfmt: Remove umm_initi

[incubator-nuttx-website] branch asf-site updated: Publishing web: ea6fce84bf8202600a0318215864afe272c81f07 docs: 5ff4e33e3fba040c44fae523909ccd0a4c31da4c

2021-10-18 Thread github-bot
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new 7c80386 Publishing web

[GitHub] [incubator-nuttx] a-lunev opened a new pull request #4690: bcm43xxx: supported high-speed timing mode with a clock rate up to 50MHz

2021-10-18 Thread GitBox
a-lunev opened a new pull request #4690: URL: https://github.com/apache/incubator-nuttx/pull/4690 ## Summary Supported high-speed timing mode with a clock rate up to 50MHz ## Impact bcm43xxx driver -- This is an automated message from the Apache Git Service. To respon

[GitHub] [incubator-nuttx] Ouss4 merged pull request #4689: binfmt/Makefile: remove the specified prefix from target variables

2021-10-18 Thread GitBox
Ouss4 merged pull request #4689: URL: https://github.com/apache/incubator-nuttx/pull/4689 -- 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-

[incubator-nuttx] branch master updated: binfmt/Makefile: remove the specified prefix from target variables

2021-10-18 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche 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 5ff4e33 binfmt/Makefile: remove t

[GitHub] [incubator-nuttx] Ouss4 merged pull request #4688: arch/xtensa/Kconfig: add quotes in source to clean warnings from setconfig

2021-10-18 Thread GitBox
Ouss4 merged pull request #4688: URL: https://github.com/apache/incubator-nuttx/pull/4688 -- 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-

[incubator-nuttx] branch master updated: arch/xtensa/Kconfig: add quotes in source to clean warnings from setconfig

2021-10-18 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche 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 91398e7 arch/xtensa/Kconfig: add

[GitHub] [incubator-nuttx] gustavonihei commented on pull request #4667: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread GitBox
gustavonihei commented on pull request #4667: URL: https://github.com/apache/incubator-nuttx/pull/4667#issuecomment-946115231 > In the kernel mode, the userspace heap will be initialized automatically: > [https://github.com/apache/incubator-nuttx/blob/master/mm/umm_heap/umm_initialize.c#

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4667: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4667: URL: https://github.com/apache/incubator-nuttx/pull/4667#issuecomment-946107192 > Disclaimer: I have no familiarity with the loading of ELF files. Considering [this past commit](https://github.com/apache/incubator-nuttx/commit/b7f958a02ebf0d

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #4686: [BACKPORT-4671] espressif: Provide SPI Flash parameters to MCUboot build

2021-10-18 Thread GitBox
xiaoxiang781216 merged pull request #4686: URL: https://github.com/apache/incubator-nuttx/pull/4686 -- 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

[incubator-nuttx] 04/05: xtensa/esp32: Provide SPI Flash parameters to MCUboot build

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 25341e4622590281a218b6d6aeee964105e29574 Author: Gustavo Henrique Nihei AuthorDate: Fri Oct 15 12:09:

[incubator-nuttx] 05/05: xtensa/esp32s2: Provide SPI Flash parameters to MCUboot build

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 519dde3639663c5bcdb4ba22f2377b993c4f27a5 Author: Gustavo Henrique Nihei AuthorDate: Fri Oct 15 12:10:

[incubator-nuttx] 03/05: risc-v/esp32c3: Provide SPI Flash parameters to MCUboot build

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 575a35b1fb2e7c7ce23ea8d61939514233c35fc5 Author: Gustavo Henrique Nihei AuthorDate: Fri Oct 15 12:07:

[incubator-nuttx] 02/05: risc-v/esp32c3: Add esp-nuttx-bootloader folder to gitignore list

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit b1fab12a9981d4190fae919bd0189a10c1953e8b Author: Gustavo Henrique Nihei AuthorDate: Fri Oct 15 12:05:

[incubator-nuttx] 01/05: risc-v/esp32c3: Fix wrong arch in the path to chip folder

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 99dbc0e9fee0296f1a77f125cafc1599233fd404 Author: Gustavo Henrique Nihei AuthorDate: Fri Oct 15 12:04:

[incubator-nuttx] branch releases/10.2 updated (37aa299 -> 519dde3)

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 37aa299 arch/xtensa/xtensa_cpupause.c: Allow a spin before taking the g_cpu_wait spinlock.

[GitHub] [incubator-nuttx] gustavonihei edited a comment on pull request #4667: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread GitBox
gustavonihei edited a comment on pull request #4667: URL: https://github.com/apache/incubator-nuttx/pull/4667#issuecomment-946099727 Disclaimer: I have no familiarity with the loading of ELF files. Considering [this past commit](https://github.com/apache/incubator-nuttx/commit/b7f958a02e

[GitHub] [incubator-nuttx] gustavonihei commented on pull request #4667: binfmt: Remove umm_initialize from elf_load

2021-10-18 Thread GitBox
gustavonihei commented on pull request #4667: URL: https://github.com/apache/incubator-nuttx/pull/4667#issuecomment-946099727 Disclaimer: I have no familiarity with the loading of ELF files. Considering [this past commit](b7f958a02ebf0dde83c5022e79e7f8a55939565f), what has been changed t

[incubator-nuttx] branch master updated (9a0146f -> 177acf5)

2021-10-18 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/incubator-nuttx.git. from 9a0146f add include battery_ioctl.h add b1d5eff Userled driver: Add option to check actual pin state

[GitHub] [incubator-nuttx] davids5 merged pull request #4635: Userled driver: Implement getall by checking actual pin state

2021-10-18 Thread GitBox
davids5 merged pull request #4635: URL: https://github.com/apache/incubator-nuttx/pull/4635 -- 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: commit

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #4689: binfmt/Makefile: remove the specified prefix from target variables

2021-10-18 Thread GitBox
xiaoxiang781216 commented on a change in pull request #4689: URL: https://github.com/apache/incubator-nuttx/pull/4689#discussion_r731241486 ## File path: binfmt/Makefile ## @@ -22,54 +22,54 @@ include $(TOPDIR)/Make.defs # Basic BINFMT source files -BINFMT_CSRCS = binfmt_

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #4689: binfmt/Makefile: remove the specified prefix from target variables

2021-10-18 Thread GitBox
gustavonihei commented on a change in pull request #4689: URL: https://github.com/apache/incubator-nuttx/pull/4689#discussion_r731236149 ## File path: binfmt/Makefile ## @@ -22,54 +22,54 @@ include $(TOPDIR)/Make.defs # Basic BINFMT source files -BINFMT_CSRCS = binfmt_glo

[incubator-nuttx] branch releases/10.2 updated (55718fb -> 37aa299)

2021-10-18 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 55718fb esp32_spiflash.c: Allocate only one variable to hold the cache state in single CPU mode.

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #4689: binfmt/Makefile: remove the specified prefix from target variables

2021-10-18 Thread GitBox
xiaoxiang781216 opened a new pull request #4689: URL: https://github.com/apache/incubator-nuttx/pull/4689 ## Summary Unify the Makefile style ## Impact Minor change ## Testing -- This is an automated message from the Apache Git Service. To respond to the messag

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #4688: arch/xtensa/Kconfig: add quotes in source to clean warnings from setconfig

2021-10-18 Thread GitBox
xiaoxiang781216 opened a new pull request #4688: URL: https://github.com/apache/incubator-nuttx/pull/4688 ## Summary ## Impact Minor change ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

[incubator-nuttx] branch master updated (7e59a6a -> 9a0146f)

2021-10-18 Thread gustavonihei
This is an automated email from the ASF dual-hosted git repository. gustavonihei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 7e59a6a cpuload: fix crash because of the member of g_pidhash is NULL add 9a0146f add include b

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #4687: fs/partition: Make read_partition_block callable outside ptable

2021-10-18 Thread GitBox
xiaoxiang781216 opened a new pull request #4687: URL: https://github.com/apache/incubator-nuttx/pull/4687 ## Summary ## Impact Code refectory, no real change ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #4680: [BACKPORT-4669]arch/xtensa/xtensa_cpupause.c: Allow a spin before taking the g_cpu_wait

2021-10-18 Thread GitBox
xiaoxiang781216 merged pull request #4680: URL: https://github.com/apache/incubator-nuttx/pull/4680 -- 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

[GitHub] [incubator-nuttx] gustavonihei merged pull request #4685: add include battery_ioctl.h

2021-10-18 Thread GitBox
gustavonihei merged pull request #4685: URL: https://github.com/apache/incubator-nuttx/pull/4685 -- 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: c

[GitHub] [incubator-nuttx] gustavonihei opened a new pull request #4686: [BACKPORT-4671] espressif: Provide SPI Flash parameters to MCUboot build

2021-10-18 Thread GitBox
gustavonihei opened a new pull request #4686: URL: https://github.com/apache/incubator-nuttx/pull/4686 ## Summary Backport #4671 to releases/10.2. ## Impact It is important to backport this series of commits for fixing the following issues present on `release/10.2` branch: -

[GitHub] [incubator-nuttx] jarivanewijk commented on pull request #4635: Userled driver: Implement getall by checking actual pin state

2021-10-18 Thread GitBox
jarivanewijk commented on pull request #4635: URL: https://github.com/apache/incubator-nuttx/pull/4635#issuecomment-945845156 I rebased my PR again after renaming some of the functions in #4642. Took a bit longer to get back to this than anticipated. ;) I also added a configuration o

[GitHub] [incubator-nuttx] davie08 opened a new pull request #4685: add include battery_ioctl.h

2021-10-18 Thread GitBox
davie08 opened a new pull request #4685: URL: https://github.com/apache/incubator-nuttx/pull/4685 ## Summary add battery_ioctl.h for axp202.c because of 77bc1d1bdfd1312270d3b4f556bbe08cfb151c27 ## Impact ## Testing compile ok -- This is an automated message

[GitHub] [incubator-nuttx] patacongo commented on issue #4679: Is the nuttx OS supported GPU or Opengl es

2021-10-18 Thread GitBox
patacongo commented on issue #4679: URL: https://github.com/apache/incubator-nuttx/issues/4679#issuecomment-945792626 > May I use Opengl ES APIs to render my applications in nuttx OS? There is no port of OpenGL to NuttX. But that would be an interesting project (but probably ra

[GitHub] [incubator-nuttx] jarivanewijk closed issue #4684: CONFIG_SCHED_CPULOAD causes lockup

2021-10-18 Thread GitBox
jarivanewijk closed issue #4684: URL: https://github.com/apache/incubator-nuttx/issues/4684 -- 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: commit

[GitHub] [incubator-nuttx] jarivanewijk commented on issue #4684: CONFIG_SCHED_CPULOAD causes lockup

2021-10-18 Thread GitBox
jarivanewijk commented on issue #4684: URL: https://github.com/apache/incubator-nuttx/issues/4684#issuecomment-945775690 @Ouss4 You're right! I somehow missed that PR... It wasn't merged yet when I was debugging this issue. Thanks! -- This is an automated message from the Apache Git Ser

[GitHub] [incubator-nuttx] Ouss4 commented on issue #4684: CONFIG_SCHED_CPULOAD causes lockup

2021-10-18 Thread GitBox
Ouss4 commented on issue #4684: URL: https://github.com/apache/incubator-nuttx/issues/4684#issuecomment-945774477 Isn't this addressed by https://github.com/apache/incubator-nuttx/pull/4682? -- This is an automated message from the Apache Git Service. To respond to the message, please lo

[GitHub] [incubator-nuttx] jarivanewijk opened a new issue #4684: CONFIG_SCHED_CPULOAD causes lockup

2021-10-18 Thread GitBox
jarivanewijk opened a new issue #4684: URL: https://github.com/apache/incubator-nuttx/issues/4684 I just found that enabling the CONFIG_SCHED_CPULOAD option ("Enable CPU load monitoring") causes a lockup soon after the NuttShell initialization. If I'm quick a get less than a second to star

[incubator-nuttx] branch master updated: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea 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 7e59a6a cpuload: fix crash because o

[GitHub] [incubator-nuttx] jerpelea merged pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
jerpelea merged pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682 -- 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: commi

[GitHub] [incubator-nuttx] jerpelea removed a comment on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
jerpelea removed a comment on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945713335 please open 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 above to go to t

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #4683: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 Thread GitBox
gustavonihei commented on a change in pull request #4683: URL: https://github.com/apache/incubator-nuttx/pull/4683#discussion_r730879110 ## File path: arch/xtensa/src/common/xtensa_mpu.c ## @@ -94,7 +94,7 @@ void mpu_control(bool enable) **

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #4683: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 Thread GitBox
gustavonihei commented on a change in pull request #4683: URL: https://github.com/apache/incubator-nuttx/pull/4683#discussion_r730878614 ## File path: arch/xtensa/src/common/mpu.h ## @@ -210,7 +210,7 @@ void mpu_control(bool enable); **

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #4683: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 Thread GitBox
gustavonihei commented on a change in pull request #4683: URL: https://github.com/apache/incubator-nuttx/pull/4683#discussion_r730878614 ## File path: arch/xtensa/src/common/mpu.h ## @@ -210,7 +210,7 @@ void mpu_control(bool enable); **

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
Ouss4 commented on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945715334 > > > Are there any other cases like this one from the recent change? > > > > > > We should also consider backporting this PR along with #4676 to 10.2 release br

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
xiaoxiang781216 edited a comment on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945713375 > > Are there any other cases like this one from the recent change? > > We should also consider backporting this PR along with #4676 to 10.2 release

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945713375 > > Are there any other cases like this one from the recent change? > > We should also consider backporting this PR along with #4676 to 10.2 release branch

[GitHub] [incubator-nuttx] jerpelea commented on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
jerpelea commented on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945713335 please open 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 above to go to the speci

[GitHub] [incubator-nuttx] Ouss4 commented on pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
Ouss4 commented on pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682#issuecomment-945710473 > Are there any other cases like this one from the recent change? We should also consider backporting this PR along with https://github.com/apache/incubator-nuttx/pu

[GitHub] [incubator-nuttx] jerpelea merged pull request #4681: [BACKPORT-4670]: arch/esp32: Few fixes around SPI Flash to make it SMP friendly

2021-10-18 Thread GitBox
jerpelea merged pull request #4681: URL: https://github.com/apache/incubator-nuttx/pull/4681 -- 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: commi

[incubator-nuttx] 06/07: esp32_spiflash.c: Keep the index of the other CPU between SPI Flash operations.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 756adce0780ce844e1e77662a51b6dcdb8561bcb Author: Abdelatif Guettouche AuthorDate: Wed Oct 13 11:11:47

[incubator-nuttx] 02/07: esp32.ld: Force some of libarch.a symbols to internal SRAM. They are used when the cache is disabled.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit deb2aca8156e8ba1ad98ca93d0502d20085ea092 Author: Abdelatif Guettouche AuthorDate: Wed Jul 21 10:16:49

[incubator-nuttx] 01/07: esp32_intercpu_interrupt.c: Force the functions to internal SRAM.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 440dcd3c034ba3480acf0fbb264b1ec8096e531b Author: Abdelatif Guettouche AuthorDate: Wed Jul 21 10:12:22

[incubator-nuttx] 04/07: esp32_spiflash.c: Pause the other CPU during flash operation.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 6e95087b3b314c3bfa576a1f7c0d78958cb39ce2 Author: Abdelatif Guettouche AuthorDate: Wed Sep 29 14:08:17

[incubator-nuttx] branch releases/10.2 updated (1e25602 -> 55718fb)

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 1e25602 net/can,icmp,icmpv6,tcp,tcp_timer,udp: device should poll only those connections that are

[incubator-nuttx] 03/07: esp32.ld: Force some of libsched.a symbols to internal SRAM. They are used when the cache is disabled.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 9b982a5d61164d5f4e50d6a091aead6d9c27431f Author: Abdelatif Guettouche AuthorDate: Fri Jul 23 11:34:10

[incubator-nuttx] 05/07: xtensa_testset.c: Simplify the test-set function and remove some old comments.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 9e717995bf076ec732ba150a6da855a91f1ee6da Author: Abdelatif Guettouche AuthorDate: Wed Oct 13 10:32:24

[incubator-nuttx] 07/07: esp32_spiflash.c: Allocate only one variable to hold the cache state in single CPU mode.

2021-10-18 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch releases/10.2 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 55718fb23f4b06314ae09be4761f7a60cc4e6025 Author: Abdelatif Guettouche AuthorDate: Wed Oct 13 12:44:53

[GitHub] [incubator-nuttx] zhuyanlinzyl opened a new pull request #4683: arch:xtens:mpu: modify acc and memtype to uint32_t

2021-10-18 Thread GitBox
zhuyanlinzyl opened a new pull request #4683: URL: https://github.com/apache/incubator-nuttx/pull/4683 The type uint8_t and type uint16_t will overflow in `MPU_ENTRY_AR` marco. Change-Id: I2f660c13740fea725a076f7f208214aedc5ca0ee ## Summary ## Impact ## Testing

[GitHub] [incubator-nuttx] Donny9 opened a new pull request #4682: cpuload: fix crash because of the member of g_pidhash is NULL

2021-10-18 Thread GitBox
Donny9 opened a new pull request #4682: URL: https://github.com/apache/incubator-nuttx/pull/4682 ## Summary cpuload: fix crash because of the member of g_pidhash is NULL This patch is associated with PR https://github.com/apache/incubator-nuttx/pull/4666 Signed-off-by:

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #4673: CeDeROM add *BSD support 20211016

2021-10-18 Thread GitBox
xiaoxiang781216 commented on a change in pull request #4673: URL: https://github.com/apache/incubator-nuttx/pull/4673#discussion_r730634818 ## File path: tools/configure.sh ## @@ -21,9 +21,10 @@ set -e WD=`test -d ${0%/*} && cd ${0%/*}; pwd` TOPDIR="${WD}/.." +MAKE_CMD="mak

[GitHub] [incubator-nuttx] Ouss4 opened a new pull request #4681: [BACKPORT-4670]: arch/esp32: Few fixes around SPI Flash to make it SMP friendly

2021-10-18 Thread GitBox
Ouss4 opened a new pull request #4681: URL: https://github.com/apache/incubator-nuttx/pull/4681 ## Summary Backport #4670 to releases/10.2. ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on to Gi

[GitHub] [incubator-nuttx] Ouss4 opened a new pull request #4680: [BACKPORT-4669]arch/xtensa/xtensa_cpupause.c: Allow a spin before taking the g_cpu_wait

2021-10-18 Thread GitBox
Ouss4 opened a new pull request #4680: URL: https://github.com/apache/incubator-nuttx/pull/4680 ## Summary Backport #4669 to releases/10.2 ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on to Git

[GitHub] [incubator-nuttx] celery0ne opened a new issue #4679: Is the nuttx OS supported GPU or Opengl es

2021-10-18 Thread GitBox
celery0ne opened a new issue #4679: URL: https://github.com/apache/incubator-nuttx/issues/4679 Hello Sir, May I use Opengl ES APIs to render my applications in nuttx OS? And if the "NX Graphics Subsystem" can use gpu to rendering? -- This is an automated message from the

[GitHub] [incubator-nuttx] xiaoxiang781216 closed pull request #4591: net/devif: Remove the unnecessary net lock/unlock in devif_callback

2021-10-18 Thread GitBox
xiaoxiang781216 closed pull request #4591: URL: https://github.com/apache/incubator-nuttx/pull/4591 -- 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

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #4591: net/devif: Remove the unnecessary net lock/unlock in devif_callback

2021-10-18 Thread GitBox
xiaoxiang781216 commented on pull request #4591: URL: https://github.com/apache/incubator-nuttx/pull/4591#issuecomment-945437287 If so, let's close this PR now. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

  1   2   >