ALTracer commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1185238395
> > The original complaint was that there is a need to perform computation
in long long, but disable long long printing in LIBC.
>
> Yes, and since now it can print correct
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 d96c87f666 syscall: Add socketpair t
xiaoxiang781216 merged PR #6616:
URL: https://github.com/apache/incubator-nuttx/pull/6616
--
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
masayuki2009 opened a new pull request, #6617:
URL: https://github.com/apache/incubator-nuttx/pull/6617
## Summary
- This PR contains the following commits
- commit1: arch: arm64: Fix do_stackcheck()
- Since the stack coloration is done for every 32bits this function should
be
xiaoxiang781216 commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1185102582
> > The current PR reduces code size by disabling long long support for
printf (I will double check scanf) and still keeps support of `%ll` and `%ull`
by mapping those to
qinwei2004 commented on PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#issuecomment-1185097313
> I would like to say Congratulations on this HUGE PR!
>
> In the Single Core case, `ostest` is running successfully for me.
>
> In the SMP case, it seems that `ost
masayuki2009 opened a new pull request, #6616:
URL: https://github.com/apache/incubator-nuttx/pull/6616
## Summary
- This commit adds socketpair to syscall.csv
## Impact
- None
## Testing
- Tested with adb (not merged net)
--
This is an automated
curuvar opened a new pull request, #6615:
URL: https://github.com/apache/incubator-nuttx/pull/6615
## Summary
Added support for I2C slave mode for RP2040.
## Impact
The existing I2C slave code did not have a system agnostic way for an
application to determine the length
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 3c883b1 Publishing web
michallenc opened a new pull request, #6614:
URL: https://github.com/apache/incubator-nuttx/pull/6614
## Summary
These three commits add support for RX DMA and RS-485 mode to serial driver.
The first commit b66dd73 introduces the support of RS-485. In this mode the
hardware aut
acassis commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1184878896
> The original complaint was that there is a need to perform computation in
long long, but disable long long printing in LIBC.
Yes, and since now it can print correctly even
pkarashchenko commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1184871825
The original complaint was that there is a need to perform computation in
long long, but disable long long printing in LIBC.
--
This is an automated message from the Apach
acassis commented on code in PR #6605:
URL: https://github.com/apache/incubator-nuttx/pull/6605#discussion_r921539773
##
fs/mount/fs_procfs_mount.c:
##
@@ -268,6 +268,26 @@ static int blocks_entry(FAR const char *mountpoint,
statbuf->f_blocks - statbuf->f_bavail
acassis commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1184868111
> The current PR reduces code size by disabling long long support for printf
(I will double check scanf) and still keeps support of `%ll` and `%ull` by
mapping those to `%l` and `
pkarashchenko commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1184862602
The current PR reduces code size by disabling long long support for printf
(I will double check scanf) and still keeps support of `%ll` and `%ull` by
mapping those to `%l` a
acassis commented on code in PR #6605:
URL: https://github.com/apache/incubator-nuttx/pull/6605#discussion_r921539773
##
fs/mount/fs_procfs_mount.c:
##
@@ -268,6 +268,26 @@ static int blocks_entry(FAR const char *mountpoint,
statbuf->f_blocks - statbuf->f_bavail
acassis commented on PR #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613#issuecomment-1184856065
@xiaoxiang781216 @pkarashchenko @ALTracer I thing the code should use
CONFIG_LIBC_LONG_LONG instead of CONFIG_HAVE_LONG_LONG and we need to fix
CONFIG_LIBC_LONG_LONG definition on
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 8f72799e8e net: Fix frame count
pkarashchenko merged PR #6608:
URL: https://github.com/apache/incubator-nuttx/pull/6608
--
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
xiaoxiang781216 commented on code in PR #6605:
URL: https://github.com/apache/incubator-nuttx/pull/6605#discussion_r921379827
##
fs/mount/fs_procfs_mount.c:
##
@@ -257,11 +261,19 @@ static int blocks_entry(FAR const char *mountpoint,
/* Generate blocks list one line at a ti
xiaoxiang781216 commented on code in PR #6607:
URL: https://github.com/apache/incubator-nuttx/pull/6607#discussion_r921377507
##
libs/libc/stdio/Kconfig:
##
@@ -53,7 +53,7 @@ config NUNGET_CHARS
config LIBC_FLOATINGPOINT
bool "Enable floating point in printf"
-
xiaoxiang781216 commented on PR #6606:
URL: https://github.com/apache/incubator-nuttx/pull/6606#issuecomment-1184667749
Here is the new patch: https://github.com/apache/incubator-nuttx/pull/6613.
@ALTracer and @pkarashchenko please review it.
@ALTracer if you want to make HAVE_LONG_LONG
xiaoxiang781216 opened a new pull request, #6613:
URL: https://github.com/apache/incubator-nuttx/pull/6613
## Summary
but just format the low 32bits if CONFIG_LIBC_LONG_LONG isn't enabled to
avoid to expand the code space to much.
Note: the size will increase 192 bytes on stm32_tiny:
mkeydevelop commented on code in PR #6608:
URL: https://github.com/apache/incubator-nuttx/pull/6608#discussion_r921238884
##
net/bluetooth/bluetooth_input.c:
##
@@ -119,6 +121,8 @@ static int bluetooth_queue_frame(FAR struct
bluetooth_conn_s *conn,
/* Add the container to
pkarashchenko commented on code in PR #6607:
URL: https://github.com/apache/incubator-nuttx/pull/6607#discussion_r921187995
##
libs/libc/stdio/Kconfig:
##
@@ -53,7 +53,7 @@ config NUNGET_CHARS
config LIBC_FLOATINGPOINT
bool "Enable floating point in printf"
- de
hartmannathan commented on PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#issuecomment-1184472953
I would like to say Congratulations on this HUGE PR!
In the Single Core case, `ostest` is running successfully for me.
In the SMP case, it seems that `ostest` fa
hartmannathan closed issue #6170: ARMv8-A/R support in NuttX
URL: https://github.com/apache/incubator-nuttx/issues/6170
--
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 unsub
hartmannathan merged PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478
--
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
xiaoxiang781216 commented on PR #6607:
URL: https://github.com/apache/incubator-nuttx/pull/6607#issuecomment-1184455184
> Looks like at least
`boards/arm/stm32f7/nucleo-144/configs/f746-pysim/defconfig` should be modified
as well.
Done.
--
This is an automated message from the Apa
qinwei2004 commented on PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#issuecomment-1184365051
> Please squash into a single commit
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
pkarashchenko commented on PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#issuecomment-1184351344
Please squash into a single commit
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
qinwei2004 commented on PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#issuecomment-1184336158
@pkarashchenko , please check again
thanks for you careful check
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to G
ALTracer commented on code in PR #6605:
URL: https://github.com/apache/incubator-nuttx/pull/6605#discussion_r920977116
##
fs/mount/fs_procfs_mount.c:
##
@@ -248,6 +248,10 @@ static int blocks_entry(FAR const char *mountpoint,
if (!info->header)
{
+#if defined(CONFIG_HA
ALTracer commented on code in PR #6605:
URL: https://github.com/apache/incubator-nuttx/pull/6605#discussion_r920972983
##
fs/mount/fs_procfs_mount.c:
##
@@ -101,6 +101,7 @@ struct mount_info_s
/* Helpers */
+printflike(2, 3)
Review Comment:
Agreed. Will move to the end
easonxiang opened a new pull request, #6612:
URL: https://github.com/apache/incubator-nuttx/pull/6612
- Rebase cmake support patch based on
https://github.com/apache/incubator-nuttx/pull/3704
- Import Kconfiglib instead of kconfig-frontend in order to support multi
platform.
Signe
pkarashchenko commented on code in PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#discussion_r920859238
##
arch/arm64/include/irq.h:
##
@@ -0,0 +1,405 @@
+/
+ * arch/arm64/include/irq
pkarashchenko commented on code in PR #6478:
URL: https://github.com/apache/incubator-nuttx/pull/6478#discussion_r920857869
##
arch/arm64/src/common/arm64_mmu.c:
##
@@ -0,0 +1,619 @@
+/***
+ * arch/arm64/src
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 8dbceb77f7 include: Declare nxta
pkarashchenko merged PR #6611:
URL: https://github.com/apache/incubator-nuttx/pull/6611
--
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
39 matches
Mail list logo