qiaohaijiao commented on code in PR #9693:
URL: https://github.com/apache/nuttx/pull/9693#discussion_r1255299850
##
arch/sim/src/sim/posix/sim_alsa.c:
##
@@ -541,22 +551,59 @@ static int sim_audio_resume(struct audio_lowerhalf_s *dev)
if (!priv->pcm)
{
- return 0;
anchao commented on PR #6718:
URL: https://github.com/apache/nuttx/pull/6718#issuecomment-1624795391
> @anchao What do you think about creating some CI targets to to ensure this
continues to be functional?
Hi, @davids5 , of course, I will send a separate PR later to add
cmake-related
anchao commented on PR #6718:
URL: https://github.com/apache/nuttx/pull/6718#issuecomment-1624789560
> Given this CMake project is meant to be built from the user project
repository (as opposed to the traditional CMake workflow), IMHO instructions
like the ones suggested below would be appr
anchao commented on code in PR #6718:
URL: https://github.com/apache/nuttx/pull/6718#discussion_r1255276269
##
CMakeLists.txt:
##
@@ -0,0 +1,656 @@
+#
##
+# CMakeLists.txt
+#
+# Licensed to the Apache S
jerpelea opened a new pull request, #9734:
URL: https://github.com/apache/nuttx/pull/9734
## Summary
Change the power on sequence according to ALT1250 modem spec.
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Apache Git Service.
To re
jerpelea opened a new pull request, #9733:
URL: https://github.com/apache/nuttx/pull/9733
## Summary
1. make the aio_error implementation can pass the
ltp/open_posix_testsuite/aio_error testcases
2. the modification are referred to
https://pubs.opengroup.org/onlinepubs/9699919799/func
jerpelea opened a new pull request, #9732:
URL: https://github.com/apache/nuttx/pull/9732
## Summary
Check return values of following functions for null:
- board_lcd_getdev
- get_device
## Impact
RELEASE
## Testing
NONE
--
This is an automated message
jerpelea opened a new pull request, #9731:
URL: https://github.com/apache/nuttx/pull/9731
## Summary
Testing for overflow by adding a value to a variable to see if it "wraps
around" works only for unsigned integer values, because signed overflow has
undefined behavior according to the C
jerpelea opened a new pull request, #9730:
URL: https://github.com/apache/nuttx/pull/9730
## Summary
libc/pwd: Reuse g_passwd and g_passwd_buffer in getpwbuf
libc/pwd: Correct the geos related comment and ddd ROOT_GEOS macro
## Impact
RELEASE
## Testing
NONE
--
jerpelea opened a new pull request, #9729:
URL: https://github.com/apache/nuttx/pull/9729
## Summary
1. the lio_sigsetup() method use a universal sighand instance across all
aiocb instances, but inside the lio_sighandler() method, if one aiocb is handle
finished, then this method will fr
jerpelea commented on code in PR #9725:
URL: https://github.com/apache/nuttx/pull/9725#discussion_r1255251343
##
arch/arm/src/cxd56xx/cxd56_wdt.c:
##
@@ -200,7 +200,7 @@ static uint32_t cxd56_getreg(uintptr_t regaddr)
/* Show the register value read */
- wdinfo("%08x->%0
jerpelea opened a new pull request, #9728:
URL: https://github.com/apache/nuttx/pull/9728
## Summary
…tall 2.arch/arm/src/stm32/stm32_rtcounter.c up_rtc_settime memory hardfault
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Apache Git
pkarashchenko commented on code in PR #9725:
URL: https://github.com/apache/nuttx/pull/9725#discussion_r1255249932
##
arch/arm/src/cxd56xx/cxd56_wdt.c:
##
@@ -200,7 +200,7 @@ static uint32_t cxd56_getreg(uintptr_t regaddr)
/* Show the register value read */
- wdinfo("%08
jerpelea opened a new pull request, #9727:
URL: https://github.com/apache/nuttx/pull/9727
## Summary
Register key (VECTKEY) must be written, otherwise the write is ignored.
Reference:
https://developer.arm.com/documentation/100235/0004/the-cortex-m33-peripherals/system-control-b
jerpelea opened a new pull request, #9726:
URL: https://github.com/apache/nuttx/pull/9726
## Summary
ISX01X doesn't work if CONFIG_CPUFREQ_RELEASE_LOCK is enabled without this
changes.
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Ap
jerpelea opened a new pull request, #9725:
URL: https://github.com/apache/nuttx/pull/9725
## Summary
Fix a bug that watchdog is expired in less time than the specified time when
restarting without clearing interrupt.
## Impact
RELEASE
## Testing
NONE
--
This is
jerpelea opened a new pull request, #9724:
URL: https://github.com/apache/nuttx/pull/9724
## Summary
## Impact
RELEASE
## Testing
NONE
--
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
jerpelea opened a new pull request, #9723:
URL: https://github.com/apache/nuttx/pull/9723
## Summary
pthread_cond_wait() should be an atomic operation in the mutex lock/unlock.
Since the sched_lock() has been wrongly deleted in the previous commit, the
context switch will occurred after
jerpelea opened a new pull request, #9722:
URL: https://github.com/apache/nuttx/pull/9722
## Summary
…pio driver
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
jerpelea opened a new pull request, #9721:
URL: https://github.com/apache/nuttx/pull/9721
## Summary
The default pins to UART1 should be 17 (TXD) and 18 (RXD).
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Apache Git Service.
To respo
jerpelea opened a new pull request, #9720:
URL: https://github.com/apache/nuttx/pull/9720
## Summary
This reverts commit bc4266fa485e02b6e711a385167294d0c9055261.
## Impact
RELEASE
## Testing
NONE
--
This is an automated message from the Apache Git Service.
To re
jerpelea opened a new pull request, #9719:
URL: https://github.com/apache/nuttx/pull/9719
## Summary
If cancellation points are enabled, then the following logic is activated in
sem_wait(). This causes ECANCELED to be returned every time that sem_wait is
called.
int sem_wait(
anjiahao1 commented on PR #9706:
URL: https://github.com/apache/nuttx/pull/9706#issuecomment-1624524652
CI seems to have a problem

 were added to refs/heads/asf-site by this push:
new 155b3979 Publishing web: 8e851a05
nealef closed pull request #9717: Add support for the loading of ET_DYN objects
URL: https://github.com/apache/nuttx/pull/9717
--
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.
nealef opened a new pull request, #9717:
URL: https://github.com/apache/nuttx/pull/9717
* libs/libc/machine/arm/armv7-m/arch_elf.c
- Fix cast of error message parameters
* build-globals.sh
- Build the modlib_globals.S file used to resolve symbols when dynamically
loading
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
mu578 commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254897266
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_LOOK
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on code in PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#discussion_r1254818887
##
include/sys/syscall_lookup.h:
##
@@ -33,13 +33,13 @@ SYSCALL_LOOKUP(gettid, 0)
SYSCALL_LOOKUP(getppid, 0)
#endif
-SYSCALL_
patacongo commented on PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#issuecomment-1624178499
> @patacongo what is your opinion on making nx API a system calls and
implement most of POSIX APIs a libc wrapper? Do you see this benefitial from
structure simplification and errno modif
pkarashchenko commented on issue #9695:
URL: https://github.com/apache/nuttx/issues/9695#issuecomment-1624160020
Yes. Things are a bit messy now and I'm willing to help in cleaning things
up. That is why some times ago I started with an attempt to remove nested
cancellation points.y plan wa
pkarashchenko commented on PR #6433:
URL: https://github.com/apache/nuttx/pull/6433#issuecomment-1624152462
@patacongo what is your opinion on making nx API a system calls and
implement most of POSIX APIs a libc wrapper? Do you see this benefitial from
structure simplification and errno mod
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 bc62699c1d Fix coding style issues from PR #7202
add 8868c58720 Fix Deadloop in VFS if CONFIG_CANCELLATION_POINTS
acassis closed issue #9695: Deadloop in VFS if CONFIG_CANCELLATION_POINTS is
enabled
URL: https://github.com/apache/nuttx/issues/9695
--
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 com
acassis merged PR #9716:
URL: https://github.com/apache/nuttx/pull/9716
--
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.apache
This is an automated email from the ASF dual-hosted git repository.
tmedicci 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 bc62699c1d Fix coding style issues from PR #720
tmedicci merged PR #9715:
URL: https://github.com/apache/nuttx/pull/9715
--
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.apach
tmedicci commented on PR #9715:
URL: https://github.com/apache/nuttx/pull/9715#issuecomment-1624020238
Merging. CI is failing due to unrelated stuff.
--
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
pkarashchenko commented on code in PR #9715:
URL: https://github.com/apache/nuttx/pull/9715#discussion_r1254605297
##
libs/libc/machine/arm/armv7-m/arch_elf.c:
##
@@ -496,8 +496,10 @@ int up_relocate(const Elf32_Rel *rel, const Elf32_Sym
*sym, uintptr_t addr)
case R_ARM_RE
pkarashchenko commented on issue #9695:
URL: https://github.com/apache/nuttx/issues/9695#issuecomment-1623881526
> @pkarashchenko I just created #9716. Can you describe how you re-create
the problem. Do you just need to enable cancellation points an cat a file from
NSH? Or is there is parti
patacongo commented on code in PR #9716:
URL: https://github.com/apache/nuttx/pull/9716#discussion_r1254570331
##
syscall/syscall.csv:
##
@@ -82,6 +82,7 @@
"nx_mkfifo","nuttx/fs/fs.h","defined(CONFIG_PIPES) && CONFIG_DEV_FIFO_SIZE >
0","int","FAR const char *","mode_t","size_t
acassis commented on code in PR #9716:
URL: https://github.com/apache/nuttx/pull/9716#discussion_r1254524072
##
syscall/syscall.csv:
##
@@ -82,6 +82,7 @@
"nx_mkfifo","nuttx/fs/fs.h","defined(CONFIG_PIPES) && CONFIG_DEV_FIFO_SIZE >
0","int","FAR const char *","mode_t","size_t"
acassis commented on issue #9712:
URL: https://github.com/apache/nuttx/issues/9712#issuecomment-1623773592
Hi @GooTal as Mr. Greg said currently for real time application you can take
a look at the Rate Monotonic implemented on NuttX, if you want to implement
another scheduler I think EDF i
patacongo commented on issue #9695:
URL: https://github.com/apache/nuttx/issues/9695#issuecomment-1623768803
@pkarashchenko I just created #9716. Can you describe how you re-create the
problem. Do you just need to enable cancellation points an cat a file from
NSH? Or is there is particul
patacongo opened a new pull request, #9716:
URL: https://github.com/apache/nuttx/pull/9716
If cancellation points are enabled, then the following logic is activated in
sem_wait(). This causes ECANCELED to be returned every time that sem_wait is
called.
int sem_wait(FAR sem_t *se
xiaoxiang781216 commented on PR #1825:
URL: https://github.com/apache/nuttx-apps/pull/1825#issuecomment-1623763142
Please ignore the false alarm:
Error:
/home/runner/work/nuttx-apps/nuttx-apps/apps/netutils/thttpd/thttpd.c:99:2:
error: Mixed case identifier found
--
This is an automat
acassis opened a new pull request, #9715:
URL: https://github.com/apache/nuttx/pull/9715
## Summary
Fix coding style issues from PR #7202
## Impact
Fix pre-CI
## Testing
compiling sim/sotest
--
This is an automated message from the Apache Git Service.
To respond to the messa
patacongo commented on issue #9695:
URL: https://github.com/apache/nuttx/issues/9695#issuecomment-1623709057
> I would appreciate if you can handle the `nxsem_` related part as I'm a
bit busy with other work this days.
Okay. I will look at this a little later today.
--
This is an
anjiahao1 commented on code in PR #9706:
URL: https://github.com/apache/nuttx/pull/9706#discussion_r1254377041
##
libs/libc/gdbstub/lib_gdbstub.c:
##
@@ -0,0 +1,1711 @@
+/
+ * libs/libc/gdbstub/lib_gdbst
pkarashchenko commented on PR #7202:
URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1623597904
Also style check fails.
```
2023-07-06T04:46:48.5913429Z
##[error]/home/runner/work/nuttx/nuttx/nuttx/libs/libc/dlfcn/lib_dlopen.c:251:38:
error: Dangling whitespace at the end
pkarashchenko commented on PR #7202:
URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1623595268
@acassis I see that PR CI fails. Are we sure that changes are safe to merge?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to
acassis merged PR #1823:
URL: https://github.com/apache/nuttx-apps/pull/1823
--
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.a
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-apps.git
The following commit(s) were added to refs/heads/master by this push:
new c078b2ee7 wamr: add a kconfig to control wa
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
commit 62480d1a8ba5660a8325d426f34c13c1b6afcc7f
Author: Xiang Xiao
AuthorDate: Mon Jul 3 00:19:22 2023 +0800
boardctl: Add
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
commit 8f38fa6062bcc28c857d46697a2ebc86bbadcd12
Author: Xiang Xiao
AuthorDate: Mon Jul 3 00:43:49 2023 +0800
symtab: Remov
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 935f43185f libc/modlib: Replace nx_stat with file_stat
new 62480d1a8b boardctl: Add const to struct boardioc_symt
acassis merged PR #9671:
URL: https://github.com/apache/nuttx/pull/9671
--
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.apache
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
commit 1b2f37259a7dd6b8e2a3033e83a6ff758b70dbc9
Author: Xiang Xiao
AuthorDate: Wed Jun 28 16:58:09 2023 +0800
binfmt/elf:
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
commit 935f43185f590836c11f272481f804e9b46bdc65
Author: Xiang Xiao
AuthorDate: Tue Jul 4 19:58:04 2023 +0800
libc/modlib:
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 7bb97f7e22 elf: Replace {0x7f, 'E', 'L', 'F'} to EI_MAGIC
new 1b2f37259a binfmt/elf: Replace nx_stat with file_st
acassis merged PR #9703:
URL: https://github.com/apache/nuttx/pull/9703
--
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.apache
acassis commented on PR #9710:
URL: https://github.com/apache/nuttx/pull/9710#issuecomment-1623580498
@xiaoxiang781216 I just merged the support to ET_DYN, now NuttX can support
real libraries
--
This is an automated message from the Apache Git Service.
To respond to the message, please l
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 7bb97f7e22 elf: Replace {0x7f, 'E', 'L', 'F'} to
acassis merged PR #9710:
URL: https://github.com/apache/nuttx/pull/9710
--
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.apache
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
commit 3cee81af6ddee76f17f2494b15a0982073cb79a2
Author: Neale Ferguson
AuthorDate: Thu Jul 6 14:45:46 2023 +1000
* libs/li
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 f0107683d5 1.arch/arm/src/stm32/stm32_rtcounter.c up_rtc_initialize
Possible stall 2.arch/arm/src/stm32/stm32_rtcou
acassis merged PR #7202:
URL: https://github.com/apache/nuttx/pull/7202
--
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.apache
acassis commented on PR #7202:
URL: https://github.com/apache/nuttx/pull/7202#issuecomment-1623575170
Thank you @nealef now it worked here!
--
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 spe
midokura-xavi92 commented on code in PR #6718:
URL: https://github.com/apache/nuttx/pull/6718#discussion_r1254179806
##
CMakeLists.txt:
##
@@ -0,0 +1,656 @@
+#
##
+# CMakeLists.txt
+#
+# Licensed to the
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 f0107683d5 1.arch/arm/src/stm32/stm32_rtcounte
xiaoxiang781216 merged PR #9711:
URL: https://github.com/apache/nuttx/pull/9711
--
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
midokura-xavi92 commented on code in PR #6718:
URL: https://github.com/apache/nuttx/pull/6718#discussion_r1254179806
##
CMakeLists.txt:
##
@@ -0,0 +1,656 @@
+#
##
+# CMakeLists.txt
+#
+# Licensed to the
85 matches
Mail list logo