[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341021186 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c + * + *

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
xiaoxiang781216 commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341032292 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c +

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341056484 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c + * + *

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341076216 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c + * + *

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341076216 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c + * + *

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10826: arch/nrf{52|53|91}: add support for up_perf

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10826: URL: https://github.com/apache/nuttx/pull/10826#discussion_r1341082081 ## arch/arm/src/nrf52/nrf52_start.c: ## @@ -203,6 +203,10 @@ void __start(void) nrf52_enable_profile(true); #endif +#if defined(CONFIG_SCHED_IRQMONITOR) || def

[GitHub] [nuttx] acassis commented on pull request #10833: Initialize LED driver during late initialization for nucleo-f446re

2023-09-29 Thread via GitHub
acassis commented on PR #10833: URL: https://github.com/apache/nuttx/pull/10833#issuecomment-1740542270 @hank880907 please read how to squash: https://nuttx.apache.org/docs/latest/contributing/making-changes.html#how-to-include-the-suggestions-on-your-pull-request -- This is an automated

[GitHub] [nuttx] thebolt commented on pull request #10706: fs_epoll: several epoll problems fix

2023-09-29 Thread via GitHub
thebolt commented on PR #10706: URL: https://github.com/apache/nuttx/pull/10706#issuecomment-1740559516 > @thebolt I updated this PR. The critical section has been removed and find another way to fix the "epoll_wait() return 0" problem. Could you take a look again? I've finally had t

[GitHub] [nuttx] raiden00pl opened a new pull request, #10835: boards/nrf52: remove CONFIG_ARMV7M_SYSTICK form tickless configs

2023-09-29 Thread via GitHub
raiden00pl opened a new pull request, #10835: URL: https://github.com/apache/nuttx/pull/10835 ## Summary boards/nrf52: remove CONFIG_ARMV7M_SYSTICK form tickless configs ## Impact cosmetics ## Testing CI -- This is an automated message from the Apache Git Service. To re

[GitHub] [nuttx] raiden00pl opened a new pull request, #10836: arch: add a flag indicating that the chip doesn't support DMA transfer from/to FLASH

2023-09-29 Thread via GitHub
raiden00pl opened a new pull request, #10836: URL: https://github.com/apache/nuttx/pull/10836 ## Summary - arch: add a flag indicating that the chip doesn't support DMA transfer from/to FLASH - sensors: SENSORS_BMI270_LOAD_FROM_HEAP equals ARCH_DMA_NO_FLASH_TRANSFER ## Impac

[GitHub] [nuttx] pussuw opened a new pull request, #10837: mm/kmap: Fix bug in kmm_unmap

2023-09-29 Thread via GitHub
pussuw opened a new pull request, #10837: URL: https://github.com/apache/nuttx/pull/10837 ## Summary Fixes a bug in kmm_unmap; kernel mappings are found in the kernel's mapping list, not in the current process's list. ## Impact CONFIG_MM_KMAP only ## Testing MPFS + CONFIG_MM_K

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10830: arch/nrf{52|53|91}: fixes for timer

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10830: URL: https://github.com/apache/nuttx/pull/10830 -- 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...@nu

[nuttx] branch master updated: arch/nrf{52|53|91}: fix timer for small intervals and correct CC overflow check

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 4ea825ef9e arch/nrf{52|53|91}: fix timer for s

[GitHub] [nuttx-apps] PetteriAimonen opened a new pull request, #2101: Add basic IEEE-1588 PTP server/client

2023-09-29 Thread via GitHub
PetteriAimonen opened a new pull request, #2101: URL: https://github.com/apache/nuttx-apps/pull/2101 ## Summary This adds beginnings of a PTP (precision time protocol) daemon, which can work as server, client or both. What works: - Basic server & client operation - Transm

[GitHub] [nuttx] pussuw opened a new pull request, #10838: riscv/addrenv: Fix the user VMA end address

2023-09-29 Thread via GitHub
pussuw opened a new pull request, #10838: URL: https://github.com/apache/nuttx/pull/10838 ## Summary The end address was off by 1, making it overflow to 0 (0x1 represented by u32 value). ## Impact Fix an extremely nasty and hard to find bug ## Testing MPFS + CONFIG_BUI

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10826: arch/nrf{52|53|91}: add support for up_perf

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10826: URL: https://github.com/apache/nuttx/pull/10826 -- 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...@nu

[nuttx] branch master updated: arch/nrf{52|53|91}: add support for up_perf

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 20a65fa21b arch/nrf{52|53|91}: add support for

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10826: arch/nrf{52|53|91}: add support for up_perf

2023-09-29 Thread via GitHub
xiaoxiang781216 commented on code in PR #10826: URL: https://github.com/apache/nuttx/pull/10826#discussion_r1341275833 ## arch/arm/src/nrf52/nrf52_start.c: ## @@ -203,6 +203,10 @@ void __start(void) nrf52_enable_profile(true); #endif +#if defined(CONFIG_SCHED_IRQMONITOR) |

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
xiaoxiang781216 commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341279216 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c +

[nuttx] branch master updated: boards/nrf52: remove CONFIG_ARMV7M_SYSTICK form tickless configurations

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new cb04c0a928 boards/nrf52: remove CONFIG_ARMV7M_

[nuttx] branch master updated (cb04c0a928 -> 6865697b70)

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from cb04c0a928 boards/nrf52: remove CONFIG_ARMV7M_SYSTICK form tickless configurations new 761bddcab8 arch: add a

[nuttx] 01/02: arch: add a flag indicating that the chip doesn't support DMA transfer from/to FLASH

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git commit 761bddcab8484f6f4358c19ce464c5c136c8c0ef Author: raiden00pl AuthorDate: Fri Sep 29 11:29:18 2023 +0200 arch: add

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10835: boards/nrf52: remove CONFIG_ARMV7M_SYSTICK form tickless configs

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10835: URL: https://github.com/apache/nuttx/pull/10835 -- 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...@nu

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10836: arch: add a flag indicating that the chip doesn't support DMA transfer from/to FLASH

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10836: URL: https://github.com/apache/nuttx/pull/10836 -- 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...@nu

[nuttx] 02/02: sensors: SENSORS_BMI270_LOAD_FROM_HEAP equals ARCH_DMA_NO_FLASH_TRANSFER

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git commit 6865697b7084b205d2cb8cf5617ea260ca77faef Author: raiden00pl AuthorDate: Fri Sep 29 11:29:46 2023 +0200 sensors: S

[nuttx] branch master updated (6865697b70 -> c57c11c516)

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git from 6865697b70 sensors: SENSORS_BMI270_LOAD_FROM_HEAP equals ARCH_DMA_NO_FLASH_TRANSFER new 51f8611fc0 mm/kmap: Ch

[nuttx] 02/02: mm/kmap: Fix bug in kmm_unmap

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git commit c57c11c516ef9c697ef39f474f0278094e1b9311 Author: Ville Juven AuthorDate: Fri Sep 29 12:31:33 2023 +0300 mm/kmap:

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10837: mm/kmap: Fix bug in kmm_unmap

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10837: URL: https://github.com/apache/nuttx/pull/10837 -- 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...@nu

[nuttx] 01/02: mm/kmap: Change kmm_user_map to kmm_map_user

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git commit 51f8611fc0c152c7b2bd553813bf0ecfa3c14bd2 Author: Ville Juven AuthorDate: Fri Sep 29 12:30:46 2023 +0300 mm/kmap:

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10834: timer: handle perf count overflow

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10834: URL: https://github.com/apache/nuttx/pull/10834#discussion_r1341403772 ## sched/clock/clock_perf.c: ## @@ -0,0 +1,176 @@ +/ + * sched/clock/clock_perf.c + * + *

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10828: arch: add a flag indicating that we need up_perf_xxx

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10828: URL: https://github.com/apache/nuttx/pull/10828#discussion_r1341433268 ## arch/Kconfig: ## @@ -502,7 +502,8 @@ config ARCH_HAVE_PERF_EVENTS config ARCH_PERF_EVENTS bool "Configure hardware performance counting" - defaul

[GitHub] [nuttx] raiden00pl commented on a diff in pull request #10828: arch: add a flag indicating that we need up_perf_xxx

2023-09-29 Thread via GitHub
raiden00pl commented on code in PR #10828: URL: https://github.com/apache/nuttx/pull/10828#discussion_r1341433268 ## arch/Kconfig: ## @@ -502,7 +502,8 @@ config ARCH_HAVE_PERF_EVENTS config ARCH_PERF_EVENTS bool "Configure hardware performance counting" - defaul

[GitHub] [nuttx] xiaoxiang781216 commented on a diff in pull request #10828: arch: add a flag indicating that we need up_perf_xxx

2023-09-29 Thread via GitHub
xiaoxiang781216 commented on code in PR #10828: URL: https://github.com/apache/nuttx/pull/10828#discussion_r1341443709 ## arch/Kconfig: ## @@ -502,7 +502,8 @@ config ARCH_HAVE_PERF_EVENTS config ARCH_PERF_EVENTS bool "Configure hardware performance counting" - d

[GitHub] [nuttx] xiaoxiang781216 merged pull request #10838: riscv/addrenv: Fix the user VMA end address

2023-09-29 Thread via GitHub
xiaoxiang781216 merged PR #10838: URL: https://github.com/apache/nuttx/pull/10838 -- 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...@nu

[nuttx] branch master updated: riscv/addrenv: Fix the user VMA end address

2023-09-29 Thread xiaoxiang
This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git The following commit(s) were added to refs/heads/master by this push: new 8c6be8e1f3 riscv/addrenv: Fix the user VMA end

[nuttx-website] branch asf-site updated: Publishing web: 07abea83aab63736f2895f109c448ae631509f46 docs: 8c6be8e1f358d3929d5fc675fa7e671530ff6d64

2023-09-29 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 c03d22c4 Publishing web: 07abea83