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 58ad8962816b5e10213dce23d1cd86930183a407
Author: chao an
AuthorDate: Wed May 29 09:14:53 2024 +0800
sched/signal:
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 81c140a9533d9cd2a1a36041b735e8d6ed05bd98
Author: chao an
AuthorDate: Wed May 29 08:53:32 2024 +0800
sched/mqueue:
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 a219d75aceacd5b1275b2735d833fbacf5c8ab90
Author: chao an
AuthorDate: Mon Jun 3 08:55:28 2024 +0800
boards/arm/lpc
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 74702085f0 defconfigs: Add SCHED_HAVE_PARENT=y to configs with WAITPID
&& BUILD_KERNEL
new 81c140a953 sched/mq
xiaoxiang781216 merged PR #12432:
URL: https://github.com/apache/nuttx/pull/12432
--
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
XuNeo opened a new pull request, #12449:
URL: https://github.com/apache/nuttx/pull/12449
## Summary
If free memory is delayed, check case of double free in the first place.
## Impact
No.
## Testing
Tested on internal project.
--
This is an automated m
xiaoxiang781216 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625390697
##
sched/Kconfig:
##
@@ -1937,3 +1937,13 @@ config GROUP_KILL_CHILDREN_TIMEOUT_MS
> 0 means wait timeout
= 0 means don't do kill
TakuyaMiyasita commented on code in PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#discussion_r1625266536
##
arch/arm/Kconfig:
##
@@ -1104,6 +,7 @@ config ARCH_CHIP
default "mps" if ARCH_CHIP_MPS
default "goldfish" if ARCH_CHIP_GOLD
TakuyaMiyasita commented on code in PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#discussion_r1625265605
##
arch/arm/src/armv7-m/arm_vectors.c:
##
@@ -51,6 +51,47 @@
# error ARMV7M_PERIPHERAL_INTERRUPTS must be defined to the number of I/O
interrupts to be suppor
jasonbu commented on PR #12444:
URL: https://github.com/apache/nuttx/pull/12444#issuecomment-2146460785
> @jasonbu I think these modifications could be reflected in our
documentation:
https://nuttx.apache.org/docs/latest/components/drivers/special/power/pm/index.html
Agreed, update t
anchao commented on code in PR #12432:
URL: https://github.com/apache/nuttx/pull/12432#discussion_r1625218554
##
boards/arm/lpc17xx_40xx/lpc4088-devkit/scripts/memory.ld:
##
@@ -73,9 +73,9 @@ MEMORY
/* 64Kb of SRAM in the CPU block */
- ksram (rwx) : ORIGIN = 0x1000
anchao commented on code in PR #12432:
URL: https://github.com/apache/nuttx/pull/12432#discussion_r1625218093
##
sched/mqueue/mq_initialize.c:
##
@@ -52,6 +52,22 @@ struct list_node g_msgfreeirq;
#endif
+/*
masayuki2009 commented on PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#issuecomment-2146370501
@acassis
>Also, how our CI will know if same modification breaks the cxd32 arch? It
needs at least one board to confirm everything is in place. @masayuki2009 do
you know any CXD3
masayuki2009 commented on PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#issuecomment-2146361238
@TakuyaMiyasita
Please remove the 2nd commit since the commit is included in
https://github.com/apache/nuttx/pull/12442.
--
This is an automated message from the Apache Git Ser
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 db13f4bb5 Publishing web: c0bb376
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625173897
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625173897
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625173897
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#issuecomment-2146331180
@acassis thanks for the git tips! guess it is the thing behind `gh pr
checkout 1234`.
Unfortunately I can't access wordpress in China, will check them later when
there are chances.
--
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625177519
##
sched/Kconfig:
##
@@ -1937,3 +1937,13 @@ config GROUP_KILL_CHILDREN_TIMEOUT_MS
> 0 means wait timeout
= 0 means don't do kill signal
+
hcd-bdltd opened a new pull request, #12448:
URL: https://github.com/apache/nuttx/pull/12448
Signed-off-by: Hudson C. Dalpra
## Summary
## Impact
## Testing
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on t
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625175664
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625173897
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1625173897
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on code in PR #12320:
URL: https://github.com/apache/nuttx/pull/12320#discussion_r1623187924
##
sched/group/group_create.c:
##
@@ -119,9 +121,23 @@ int group_initialize(FAR struct task_tcb_s *tcb, uint8_t
ttype)
DEBUGASSERT(tcb && !tcb->cmn.group);
+ ttyp
yf13 commented on code in PR #12320:
URL: https://github.com/apache/nuttx/pull/12320#discussion_r1623186467
##
include/nuttx/tls.h:
##
@@ -219,6 +219,7 @@ struct tls_info_s
int16_t tl_cpcount; /* Nested cancellation point count */
#endif
+ uint16_t tl_siz
yf13 commented on code in PR #12320:
URL: https://github.com/apache/nuttx/pull/12320#discussion_r1623186467
##
include/nuttx/tls.h:
##
@@ -219,6 +219,7 @@ struct tls_info_s
int16_t tl_cpcount; /* Nested cancellation point count */
#endif
+ uint16_t tl_siz
acassis commented on PR #2026:
URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2146197467
@nealef actually I think we can use other symbol to indicate that _start at
0x4704. @tmedicci what do you think? Do you see any issue of this idea?
--
This is an automated messag
acassis commented on PR #2026:
URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2146195732
@nealef ESP32 has a libc and other features inside their internal ROM that
applications could reuse, it helps to reduce the application size, since the
application don't need to be lin
patacongo commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2146085303
> All the sequence numbers are 0/0 because I used `ping -c1`
But shouldn't the ID have changed from 3?
--
This is an automated message from the Apache Git Service.
To respo
tmedicci commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2146079765
Hi @casaroli,
I couldn't reproduce the issue even when using your firmware (I tested the
first firmware you sent, with `CONFIG_NET_ARP_SEND` disabled). If I wait for
the ARP
nealef commented on PR #2026:
URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2146019058
It's not the entry point that's causing the grief as the `*.ld` script files
all specify an entry point of `__start` so it seems related to the binary being
examined by the `nm` command
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2146014653
> > But I also don't know how `id 1` could be sent delayed, it's strange and
seems not a normal behavior our net stack can do.
>
>
>
> Was it delayed? Or sent twice?
acassis commented on PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#issuecomment-2145913141
@yf13 another you to test a PR without downloading and applying it manually:
```
git fetch upstream pull/1234/head
git checkout FETCH_HEAD
```
Assuming 1234 is the number
patacongo commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145890757
> But I also don't know how `id 1` could be sent delayed, it's strange and
seems not a normal behavior our net stack can do.
Was it delayed? Or sent twice?
Notice tha
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145886371
But, please notice that the reported issue happens even with
`CONFIG_NET_ARP_SEND` enabled
--
This is an automated message from the Apache Git Service.
To respond to the message,
acassis commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145882920
I think instead of removing it could be enabled by default, this way avoid
bloating NuttX and will work by default.
--
This is an automated message from the Apache Git Service.
To
patacongo commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145856778
> @casaroli I think Greg @patacongo explained this issue in the pass, it was
caused by some initialization that was done during the first packet processing.
This seems to be
acassis commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145844991
> > @casaroli I remember that even for TCP/IP in the past ping was failing
for the very first package or delaying 1s, but AFAIK it was fixed. Hi @wengzhe
do you know more about it?
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145825732
Here are logs with info enabled:
```
nsh> ping -c1 8.8.8.8
PING 8.8.8.8 56 bytes of data
sendto_eventhandler: flags: 4000
sendto_eventhandler: Send ICMP request
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145803790
I could trace the packet up to `esp_wifi_sta_send_data` or
`esp_wifi_internal_tx` so I think the packet was successfully delivered to the
wifi controller and NuttX network stack is
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145798903
So here is with `CONFIG_NET_ARP_SEND` enabled. Same issue. See that ARP_SEND
was not even used because I waited until the ARP table was populated (with the
gateway). This time I got
acassis commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145796404
@casaroli I think Greg @patacongo explained this issue in the pass, it was
caused by some initialization that was done during the first packet processing.
--
This is an automated m
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145788450
Note: when I sent the packet before the ARP table is populated, and without
`CONFIG_ARP_SEND` enabled, it drops (as expected) and the packets **are not
transmitted later**, I will m
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145779760
started from a clean tree
```
./tools/configure.sh -l esp32-devkitc:wifi
make
make bootloader
make flash ESPTOOL_PORT=/dev/ttyUSB0 ESPTOOL_BINDIR=.
```
Then I
almir-okato commented on PR #12447:
URL: https://github.com/apache/nuttx/pull/12447#issuecomment-2145764003
I'm fixing the last errors pointed by the CI.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
casaroli commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145740200
I will try and share the binaries, config and outcome.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
U
tmedicci commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145726753
> > @casaroli I remember that even for TCP/IP in the past ping was failing
for the very first package or delaying 1s, but AFAIK it was fixed. Hi @wengzhe
do you know more about it?
wengzhe commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145652154
> @casaroli I remember that even for TCP/IP in the past ping was failing for
the very first package or delaying 1s, but AFAIK it was fixed. Hi @wengzhe do
you know more about it?
acassis commented on PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#issuecomment-2145591052
@TakuyaMiyasita "We don't contribute the cxd32xx board directory, because
our evaluation board is not usable for OSS engineer." I don't know it make much
sense, if these CXD32xx MCUs are
pkarashchenko merged PR #12434:
URL: https://github.com/apache/nuttx/pull/12434
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@nutt
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 36cafbb37f mm/gran: Fix GRAN_ALIGNED() macro
new c1ceec3404 sched/Kconfig: waitpid() depends on SCHED_HAVE_
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 74702085f09011c549531de7c9cd5c50a90f4aa9
Author: Ville Juven
AuthorDate: Mon Jun 3 15:53:38 2024 +0300
defcon
This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit c1ceec3404a9578665ca12a009ff6aa7723c95fc
Author: Ville Juven
AuthorDate: Fri May 31 13:44:25 2024 +0300
sched
acassis commented on code in PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#discussion_r1624705793
##
arch/arm/Kconfig:
##
@@ -1104,6 +,7 @@ config ARCH_CHIP
default "mps" if ARCH_CHIP_MPS
default "goldfish" if ARCH_CHIP_GOLDFISH_AR
acassis commented on PR #12447:
URL: https://github.com/apache/nuttx/pull/12447#issuecomment-2145561411
@almir-okato is it possible to have this support for ESP32 was well or only
ESP32-Sx ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log
tmedicci commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145557880
@casaroli , I tried to reproduce the issue here but I wasn't able to
reproduce the same behavior:
Eventually I got the 1st ping lost (I can't see it on `tcpdump`), but It was
acassis commented on issue #12446:
URL: https://github.com/apache/nuttx/issues/12446#issuecomment-2145526081
@casaroli I remember that even for TCP/IP in the past ping was failing for
the very first package or delaying 1s, but AFAIK it was fixed. Hi @wengzhe do
you know more about it?
--
yf13 commented on code in PR #12320:
URL: https://github.com/apache/nuttx/pull/12320#discussion_r1623186467
##
include/nuttx/tls.h:
##
@@ -219,6 +219,7 @@ struct tls_info_s
int16_t tl_cpcount; /* Nested cancellation point count */
#endif
+ uint16_t tl_siz
yf13 commented on code in PR #12320:
URL: https://github.com/apache/nuttx/pull/12320#discussion_r1623186467
##
include/nuttx/tls.h:
##
@@ -219,6 +219,7 @@ struct tls_info_s
int16_t tl_cpcount; /* Nested cancellation point count */
#endif
+ uint16_t tl_siz
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624586149
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624586149
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624586149
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
xiaoxiang781216 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624575753
##
sched/Kconfig:
##
@@ -1937,3 +1937,13 @@ config GROUP_KILL_CHILDREN_TIMEOUT_MS
> 0 means wait timeout
= 0 means don't do kill
xiaoxiang781216 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624569036
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
xiaoxiang781216 commented on code in PR #12432:
URL: https://github.com/apache/nuttx/pull/12432#discussion_r1624526224
##
boards/arm/lpc17xx_40xx/lpc4088-devkit/scripts/memory.ld:
##
@@ -73,9 +73,9 @@ MEMORY
/* 64Kb of SRAM in the CPU block */
- ksram (rwx) : ORIGIN
xiaoxiang781216 merged PR #12445:
URL: https://github.com/apache/nuttx/pull/12445
--
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
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 39e6e25565 drivers/devicetree/fdt: add additional fdt parsing
utilities.
add 36cafbb37f mm/gran: Fix GRAN_ALIG
xiaoxiang781216 merged PR #12405:
URL: https://github.com/apache/nuttx/pull/12405
--
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
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 39e6e25565 drivers/devicetree/fdt: add additio
xiaoxiang781216 commented on code in PR #12441:
URL: https://github.com/apache/nuttx/pull/12441#discussion_r1624471928
##
arch/arm/src/armv7-m/arm_vectors.c:
##
@@ -51,6 +51,47 @@
# error ARMV7M_PERIPHERAL_INTERRUPTS must be defined to the number of I/O
interrupts to be suppo
xiaoxiang781216 commented on code in PR #12442:
URL: https://github.com/apache/nuttx/pull/12442#discussion_r1624462635
##
arch/arm/src/armv7-m/arm_vectors.c:
##
@@ -51,6 +51,47 @@
# error ARMV7M_PERIPHERAL_INTERRUPTS must be defined to the number of I/O
interrupts to be suppo
almir-okato commented on PR #12447:
URL: https://github.com/apache/nuttx/pull/12447#issuecomment-2145206397
@tmedicci @eren-terzioglu @fdcavalcanti @xiaoxiang781216 PTAL
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use
almir-okato opened a new pull request, #12447:
URL: https://github.com/apache/nuttx/pull/12447
## Summary
The Simple Boot feature for Espressif chips is a method of booting that
doesn't depend on a 2nd stage bootloader. It is intended to provide a minimal
and straight-forward way of boot
xiaoxiang781216 commented on PR #12394:
URL: https://github.com/apache/nuttx/pull/12394#issuecomment-2145187475
ci break is fixed one week ago, @jfbblue0922 please rebase your patch to
the latest master.
--
This is an automated message from the Apache Git Service.
To respond to the messa
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 937bdcec78 boards: cxd56xx: Fix read position in cxd5610 gnss driver
add 99dee09146 drivers/serial/uart_pl011.c
xiaoxiang781216 merged PR #12443:
URL: https://github.com/apache/nuttx/pull/12443
--
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
casaroli opened a new issue, #12446:
URL: https://github.com/apache/nuttx/issues/12446
Hello,
I am having a strange issue and I am not sure if this is in esp32 wifi
driver or anything else in NuttX, so I describe here to see if anyone else can
reproduce or point me where to look next
davids5 commented on PR #12394:
URL: https://github.com/apache/nuttx/pull/12394#issuecomment-2145166834
@jfbblue0922 - hmm Look Like CI is still not happy. @xiaoxiang781216 Any
ideas what it broken?
--
This is an automated message from the Apache Git Service.
To respond to the message, pl
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624361567
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
davids5 commented on PR #12442:
URL: https://github.com/apache/nuttx/pull/12442#issuecomment-2144994184
@TakuyaMiyasita What are the repercussions of this change on systems with
bootloaders that fetch the entry point from the vector table? Is this a
breaking change? Would you mind providing
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624267727
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
pkarashchenko commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624267727
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1
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 7cffac62f Publishing web: c0bb376
This is an automated email from the ASF dual-hosted git repository.
jerpelea pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 05b101134a net:Support jumbo frame prealloc the iob for the
ICMP/UDP/TCP.
add 937bdcec78 boards: cxd56xx: Fix r
jerpelea merged PR #12440:
URL: https://github.com/apache/nuttx/pull/12440
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@nuttx.apa
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/nuttx-website.git
The following commit(s) were added to refs/heads/master by this push:
new c0bb376da contributors: update "Chao An
jerpelea merged PR #115:
URL: https://github.com/apache/nuttx-website/pull/115
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: commits-unsubscr...@nuttx
pussuw opened a new pull request, #12445:
URL: https://github.com/apache/nuttx/pull/12445
## Summary
GRAN_ALIGNED should check that the memory block's alignment (log2align) is
correct, not that the memory block is aligned with the granule size.
This fixes DEBUGASSERT() in mm_granfr
anchao commented on code in PR #12444:
URL: https://github.com/apache/nuttx/pull/12444#discussion_r1624105262
##
drivers/power/pm/pm_changestate.c:
##
@@ -251,12 +258,13 @@ static inline void pm_changeall(int domain, enum
pm_state_e newstate)
{
/* Visit each registe
yf13 commented on code in PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#discussion_r1624050004
##
include/nuttx/lib/math32.h:
##
@@ -52,11 +52,15 @@
#define FLS2(n) ((n) & 0x2? 1 + FLS1 ((n) >> 1) : FLS1 (n))
#define FLS1(n) ((n) & 0x1? 1 : 0)
yf13 commented on PR #12427:
URL: https://github.com/apache/nuttx/pull/12427#issuecomment-2144625345
@anchao, many thanks! I tried the web search, now both 4117 and this PR are
returned.
It is so nice of you!
--
This is an automated message from the Apache Git Service.
To respond t
jasonbu opened a new pull request, #12444:
URL: https://github.com/apache/nuttx/pull/12444
## Summary
Remove the PM gloabal variables. make callback register to the domain
directly.
To keep compatible, make default pm_register behaviour only register to the
PM_IDLE_DOMAIN.
## I
nicolas71640 commented on PR #12425:
URL: https://github.com/apache/nuttx/pull/12425#issuecomment-2144459078
@acassis @xiaoxiang781216
The build risc-v failed. No idea why, flakky ? Can someone relaunch it ?
--
This is an automated message from the Apache Git Service.
To respond t
Gary-Hobson closed pull request #8755: ramlog: optimize ramlog_addchar, copy as
much content as possible at a time
URL: https://github.com/apache/nuttx/pull/8755
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL abo
95 matches
Mail list logo