xiaoxiang781216 commented on issue #10454:
URL: https://github.com/apache/nuttx/issues/10454#issuecomment-1754487830
@pkarashchenko do you have any update about SocketLIN?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and us
qinwei2004 commented on PR #10655:
URL: https://github.com/apache/nuttx/pull/10655#issuecomment-1754485090
> Hi @qinwei2004: Sorry there's a minor issue with macOS Build, it shows
some `sed` messages:
>
> ```
> $ tools/configure.sh pinephone:nsh
> $ make
> sed: illegal option
xiaoxiang781216 commented on issue #10644:
URL: https://github.com/apache/nuttx/issues/10644#issuecomment-1754454922
the built in uorb is compatible with PX4, but the performance and size will
be much better.
--
This is an automated message from the Apache Git Service.
To respond to the m
minrui-hust commented on issue #10644:
URL: https://github.com/apache/nuttx/issues/10644#issuecomment-1754359019
”uorb“ is borrow from PX4,which is really a event-driven middle layer for
inter-thread communication. And "uorb" is inspired by ROS (but with limited
functionality and flexibilit
lupyuen opened a new pull request, #10881:
URL: https://github.com/apache/nuttx/pull/10881
## Summary
When we build NuttX on macOS, it shows many `sed` messages (and the build
still completes successfully):
```text
$ tools/configure.sh pinephone:nsh
$ make
sed: illegal
lupyuen commented on PR #10655:
URL: https://github.com/apache/nuttx/pull/10655#issuecomment-1754168154
Hi @qinwei2004: Sorry there's a minor issue with macOS Build, it shows some
`sed` messages:
```text
$ tools/configure.sh pinephone:nsh
$ make
sed: illegal option -- r
``
potato1992 commented on issue #10872:
URL: https://github.com/apache/nuttx/issues/10872#issuecomment-1754122173
Problem solved. I compared my configurations carefully with PX4 flight
controller's, as my pixhawk log perfectly with the same SDCard. It seems that,
in addition to the Youtube SD
potato1992 closed issue #10872: SD card Data block CRC failure when chunk size
is larger than 512
URL: https://github.com/apache/nuttx/issues/10872
--
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 th
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 def860f5 Publishing web: 07abea83
fdcavalcanti opened a new pull request, #2113:
URL: https://github.com/apache/nuttx-apps/pull/2113
## Summary
This PR adds support for the Madgwick Algorithm (Sensor Fusion Library) and
adds an example that uses this lib with the MPU6050.
The library is under Application Configuration
This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 21beb284bc net/usersock: Return -ENOSUPP directly if domain isn't
equal to PF_INET/PF_INET6
add f38cdb09b4 Add s
acassis merged PR #10877:
URL: https://github.com/apache/nuttx/pull/10877
--
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.apac
This is an automated email from the ASF dual-hosted git repository.
acassis 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 21beb284bc net/usersock: Return -ENOSUPP directl
acassis merged PR #10878:
URL: https://github.com/apache/nuttx/pull/10878
--
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.apac
This is an automated email from the ASF dual-hosted git repository.
acassis 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 e0e6e5c2c8 fix: TreeNode has same attribute with
acassis merged PR #10879:
URL: https://github.com/apache/nuttx/pull/10879
--
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.apac
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350712432
##
fs/vfs/fs_fdopen.c:
##
@@ -120,7 +120,7 @@ int fs_fdopen(int fd, int oflags, FAR struct tcb_s *tcb,
/* Check input parameters */
- if (fd < 0)
+ if (fd <
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350739537
##
libs/libc/stdio/lib_libstream.c:
##
@@ -66,13 +67,27 @@ void lib_stream_initialize(FAR struct task_group_s *group)
list->sl_head = NULL;
list->sl_tail = NUL
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350737968
##
libs/libc/stdio/lib_libfread_unlocked.c:
##
@@ -213,9 +215,9 @@ ssize_t lib_fread_unlocked(FAR void *ptr, size_t count, FAR
FILE *stream)
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350736791
##
libs/libc/stdio/lib_stdio_cb.c:
##
@@ -0,0 +1,90 @@
+/
+ * libs/libc/stdio/lib_stdio_c
trns1997 opened a new pull request, #10880:
URL: https://github.com/apache/nuttx/pull/10880
## Summary
- Add munmap logic to pseudo fs to prevent munmap from ret EINVAL when
called.
## Impact
## Testing
--
This is an automated message from the Apache Git Service.
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350712432
##
fs/vfs/fs_fdopen.c:
##
@@ -120,7 +120,7 @@ int fs_fdopen(int fd, int oflags, FAR struct tcb_s *tcb,
/* Check input parameters */
- if (fd < 0)
+ if (fd <
xiaoxiang781216 commented on code in PR #10840:
URL: https://github.com/apache/nuttx/pull/10840#discussion_r1350646381
##
include/nuttx/sched_note.h:
##
@@ -700,8 +636,7 @@ void sched_note_filter_tag(FAR struct note_filter_tag_s
*oldf,
}
#endif
-#else /* CONFIG_SCHED_INSTRU
xiaoxiang781216 commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350627664
##
include/nuttx/fs/fs.h:
##
@@ -425,6 +425,31 @@ struct inode
#define FSNODE_SIZE(n) (sizeof(struct inode) + (n))
+/* Definitions for custom stream operat
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-apps.git
from a3bbea86f remove the check that progname matches mainsrc
new 529c0f1fc system: use fileno to get stream fi
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-apps.git
commit 91a682f11bba1a537bd095cef45f17db57c9e7b9
Author: Michal Lenc
AuthorDate: Mon Oct 9 14:46:24 2023 +0200
testi
xiaoxiang781216 merged PR #2112:
URL: https://github.com/apache/nuttx-apps/pull/2112
--
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...
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-apps.git
commit 529c0f1fc947de2731efcbbad2e912598192eb80
Author: Michal Lenc
AuthorDate: Fri Sep 22 13:37:51 2023 +0200
syst
xiaoxiang781216 merged PR #2111:
URL: https://github.com/apache/nuttx-apps/pull/2111
--
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...
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-apps.git
from 1e5e755ba examples: Split hello example into hello and hello_wasm
new 77a5666cb Revert "fix progname do no
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-apps.git
commit 77a5666cb72657fec1c0768b43976a8ea0fc68ca
Author: xuxin19
AuthorDate: Mon Oct 9 19:47:05 2023 +0800
Revert "f
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-apps.git
commit a3bbea86ff5c78a7a73e6c39c23d496eae87e548
Author: xuxin19
AuthorDate: Mon Oct 9 19:48:05 2023 +0800
remove th
TaiJuWu commented on PR #10879:
URL: https://github.com/apache/nuttx/pull/10879#issuecomment-1753281972
@acassis Thank you a lot.
I hope get some help from community
Is there any documentation about this tool?
I have some questions about it.
And how can I get the python fo
pkarashchenko merged PR #10876:
URL: https://github.com/apache/nuttx/pull/10876
--
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 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 3e8575c39e riscv-v/pgalloc.h: Return kerne
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 3e8575c39e riscv-v/pgalloc.h: Return kernel vaddr for kernel RAM paddr
add b2f9926a1b kmm_map.c: Fix call t
pkarashchenko merged PR #10875:
URL: https://github.com/apache/nuttx/pull/10875
--
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 d72de58aa8 sched/assert.c: Print process name in assert dump
add 141dc1e3e7 fix(esp32s3_i2c): set regs orde
pkarashchenko merged PR #10873:
URL: https://github.com/apache/nuttx/pull/10873
--
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
acassis commented on PR #10879:
URL: https://github.com/apache/nuttx/pull/10879#issuecomment-1753264719
@TaiJuWu small typo: attrubute -> attribute
--
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
TaiJuWu opened a new pull request, #10879:
URL: https://github.com/apache/nuttx/pull/10879
## Summary
NodeMixin have attrubute called size and it is set property. Overwrite this
property by _size but it will make report incompatible.
Create a new class NuttxDictExporter to renaming
xiaoxiang781216 opened a new pull request, #10878:
URL: https://github.com/apache/nuttx/pull/10878
## Summary
## Impact
## Testing
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
leducp commented on code in PR #10877:
URL: https://github.com/apache/nuttx/pull/10877#discussion_r1350363948
##
boards/arm/mx8mp/verdin-mx8mp/src/mx8mp_spi.c:
##
@@ -0,0 +1,122 @@
+/
+ * boards/arm/mx8m
leducp commented on code in PR #10877:
URL: https://github.com/apache/nuttx/pull/10877#discussion_r1350361140
##
arch/arm/src/mx8mp/hardware/mx8mp_ecspi.h:
##
@@ -0,0 +1,102 @@
+/
+ * arch/arm/src/mx8mp/
xiaoxiang781216 commented on code in PR #10877:
URL: https://github.com/apache/nuttx/pull/10877#discussion_r1350354307
##
arch/arm/src/mx8mp/hardware/mx8mp_ecspi.h:
##
@@ -0,0 +1,102 @@
+/
+ * arch/arm/s
michallenc commented on PR #2112:
URL: https://github.com/apache/nuttx-apps/pull/2112#issuecomment-1753054869
> please add a commit message
Done,
--
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
leducp opened a new pull request, #10877:
URL: https://github.com/apache/nuttx/pull/10877
## Summary
Add support for SPI (ecspi module)
## Impact
## Testing
OK on Verdin board for SPI1
--
This is an automated message from the Apache Git Service.
To respond to the m
michallenc commented on PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#issuecomment-1753022426
@xiaoxiang781216 I have updated the implementation and implemented most of
your suggestions (see separate comments). There is a new PR in nuttx-apps [add
fopecookie test and use fileno
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 28dee592a3 video/fb: Add fb_register_device
add d72de58aa8 sched/assert.c: Print process name in assert dump
N
xiaoxiang781216 merged PR #10858:
URL: https://github.com/apache/nuttx/pull/10858
--
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
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350312974
##
include/nuttx/fs/fs.h:
##
@@ -497,6 +546,8 @@ struct file_struct
FAR struct file_struct *fs_next; /* Pointer to next file stream */
rmutex_t
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350311535
##
libs/libc/stdio/lib_fopencookie.c:
##
@@ -0,0 +1,181 @@
+/
+ * libs/libc/stdio/lib_fop
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350311076
##
libs/libc/libc.h:
##
@@ -245,6 +245,13 @@ bool lib_isbasedigit(int ch, int base, FAR int *value);
int lib_checkbase(int base, FAR const char **pptr);
+/* Def
michallenc commented on code in PR #10602:
URL: https://github.com/apache/nuttx/pull/10602#discussion_r1350309565
##
include/nuttx/fs/fs.h:
##
@@ -425,6 +425,55 @@ struct inode
#define FSNODE_SIZE(n) (sizeof(struct inode) + (n))
+/* Definitions for custom stream operations
michallenc opened a new pull request, #2112:
URL: https://github.com/apache/nuttx-apps/pull/2112
## Summary
This PR is linked with [libc: add support for custom streams with
fopencookie()](https://github.com/apache/nuttx/pull/10602) as it adds tests for
fopencookie utility.
It
pussuw opened a new pull request, #10876:
URL: https://github.com/apache/nuttx/pull/10876
## Summary
This fixes several fatal issues with the kernel mapping interface.
Highlights are in the commit messages.
## Impact
kmm_map only (CONFIG_BUILD_KERNEL and CONFIG_MM_KMAP)
## Testin
pussuw opened a new pull request, #10875:
URL: https://github.com/apache/nuttx/pull/10875
## Summary
All kernel memory is mapped paddr=vaddr, so it is trivial to give mapping
for kernel memory. Only interesting region should be kernel RAM, so omit kernel
ROM and don't allow re-mapping it
masayuki2009 commented on PR #10496:
URL: https://github.com/apache/nuttx/pull/10496#issuecomment-1752901929
@chirping78
>I got the board today, and can reproduce the issue w/o this PR change.
Can you attach .config to this PR?
>About "where the local interrupt on cpu1 w
xuxin930 opened a new pull request, #2111:
URL: https://github.com/apache/nuttx-apps/pull/2111
## Summary
Not all mismatched numbers of progname and mainsrc are errors, remove the
check here
## Impact
## Testing
CI
--
This is an automated message from the Apache Gi
tmedicci commented on PR #10873:
URL: https://github.com/apache/nuttx/pull/10873#issuecomment-1752826683
Please don't merge it yet. I'll run it on our internal CI ;)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
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 4f8a2b3874 libds/lib_misc: use b16abs()
add 28dee592a3 video/fb: Add fb_register_device
No new revisions w
pkarashchenko commented on code in PR #10874:
URL: https://github.com/apache/nuttx/pull/10874#discussion_r1350115711
##
drivers/video/fb.c:
##
@@ -1505,15 +1492,14 @@ int fb_register(int display, int plane)
nxmutex_init(&fb->lock);
- ret = register_driver(devname, &g_fb_
pkarashchenko merged PR #10874:
URL: https://github.com/apache/nuttx/pull/10874
--
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
pkarashchenko commented on code in PR #10858:
URL: https://github.com/apache/nuttx/pull/10858#discussion_r1350069905
##
sched/misc/assert.c:
##
@@ -555,11 +555,21 @@ void _assert(FAR const char *filename, int linenum,
FAR const char *msg, FAR void *regs)
{
FAR
pussuw commented on PR #10858:
URL: https://github.com/apache/nuttx/pull/10858#issuecomment-1752661917
Different build error, maybe someone can restart CI ?
```
[main.zip]
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes
pkarashchenko commented on code in PR #10858:
URL: https://github.com/apache/nuttx/pull/10858#discussion_r1350069905
##
sched/misc/assert.c:
##
@@ -555,11 +555,21 @@ void _assert(FAR const char *filename, int linenum,
FAR const char *msg, FAR void *regs)
{
FAR
pkarashchenko commented on code in PR #10874:
URL: https://github.com/apache/nuttx/pull/10874#discussion_r1350065859
##
drivers/video/fb.c:
##
@@ -1505,15 +1492,14 @@ int fb_register(int display, int plane)
nxmutex_init(&fb->lock);
- ret = register_driver(devname, &g_fb_
Author: jerpelea
Date: Mon Oct 9 07:12:17 2023
New Revision: 64409
Log:
Staging apache-nuttx-12.3.0-RC0
Added:
dev/nuttx/12.3.0-RC0/
dev/nuttx/12.3.0-RC0/apache-nuttx-12.3.0.tar.gz (with props)
dev/nuttx/12.3.0-RC0/apache-nuttx-12.3.0.tar.gz.asc
dev/nuttx/12.3.0-RC0/apache-nutt
68 matches
Mail list logo