Re: [PR] boards/sim: disable libcxxtest tenatively to unblock CI checks [nuttx]

2024-02-14 Thread via GitHub


pkarashchenko commented on PR #11696:
URL: https://github.com/apache/nuttx/pull/11696#issuecomment-1945536482

   Maybe we can disable this for MACOS builds only?


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] elf/tests/helloxx: fix build break with elf cpp exceptions example [nuttx-apps]

2024-02-14 Thread via GitHub


jerpelea merged PR #2286:
URL: https://github.com/apache/nuttx-apps/pull/2286


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(nuttx-apps) branch master updated: elf/tests/helloxx: fix build break with elf cpp exceptions example

2024-02-14 Thread jerpelea
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-apps.git


The following commit(s) were added to refs/heads/master by this push:
 new da9903fe5 elf/tests/helloxx: fix build break with elf cpp exceptions 
example
da9903fe5 is described below

commit da9903fe57ed50456c0e292b28209c9f01c6472a
Author: Abhishek Akkabathula 
AuthorDate: Tue Feb 13 17:36:21 2024 +0530

elf/tests/helloxx: fix build break with elf cpp exceptions example

fix the below build error by correcting the typo (tring -> string)

hello++5.cxx: In member function 'virtual void 
CThingSayer::ThrowMyThing(const char*)':
hello++5.cxx:157:21: error: 'tring' was not declared in this scope
  157 |   throw MyException(tring(czSayThis));
  | ^

Signed-off-by: Abhishek Akkabathula 
---
 examples/elf/tests/helloxx/hello++5.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/elf/tests/helloxx/hello++5.cxx 
b/examples/elf/tests/helloxx/hello++5.cxx
index b087fdb00..bda7aaf9e 100644
--- a/examples/elf/tests/helloxx/hello++5.cxx
+++ b/examples/elf/tests/helloxx/hello++5.cxx
@@ -154,7 +154,7 @@ void CThingSayer::ThrowThing(void)
 void CThingSayer::ThrowMyThing(const char *czSayThis = NULL)
 {
   cout << "CThingSayer::ThrowMyThing: I am now throwing an MyException (with 
reason)." << endl;
-  throw MyException(tring(czSayThis));
+  throw MyException(string(czSayThis));
 }
 
 /



(nuttx-apps) branch master updated: lte/alt1250: Force change modem parameter

2024-02-14 Thread jerpelea
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-apps.git


The following commit(s) were added to refs/heads/master by this push:
 new 90c9364b3 lte/alt1250: Force change modem parameter
90c9364b3 is described below

commit 90c9364b3b48f04a00697316ef916e2bf23ebcde
Author: SPRESENSE <41312067+sprese...@users.noreply.github.com>
AuthorDate: Thu Jan 25 11:40:29 2024 +0900

lte/alt1250: Force change modem parameter

In some conditions, LTE connection has issue.
To fix it, need to change a modem parameter.
---
 lte/alt1250/alt1250_atcmd.c | 27 +++
 lte/alt1250/alt1250_atcmd.h |  7 +++
 lte/alt1250/alt1250_reset_seq.c | 39 +++
 3 files changed, 73 insertions(+)

diff --git a/lte/alt1250/alt1250_atcmd.c b/lte/alt1250/alt1250_atcmd.c
index 5eba45d6a..bdd7e2853 100644
--- a/lte/alt1250/alt1250_atcmd.c
+++ b/lte/alt1250/alt1250_atcmd.c
@@ -431,6 +431,33 @@ int ltenwop_send_setnwoptp(FAR struct alt1250_s *dev,
   return send_internal_at_command(dev, container, -1, NULL, 0, );
 }
 
+/
+ * name: ltesp_send_getscanplan
+ /
+
+int ltesp_send_getscanplan(FAR struct alt1250_s *dev,
+   FAR struct alt_container_s *container)
+{
+  int32_t dummy;
+  snprintf((FAR char *)dev->tx_buff, _TX_BUFF_SIZE,
+   "AT%%GETCFG=\"SCAN_PLAN_EN\"\r");
+  return send_internal_at_command(dev, container, -1, NULL, 0, );
+}
+
+/
+ * name: ltesp_send_setscanplan
+ /
+
+int ltesp_send_setscanplan(FAR struct alt1250_s *dev,
+   FAR struct alt_container_s *container,
+   bool enable)
+{
+  int32_t dummy;
+  snprintf((FAR char *)dev->tx_buff, _TX_BUFF_SIZE,
+   "AT%%SETCFG=\"SCAN_PLAN_EN\",\"%s\"\r", (enable ? "1" : "0"));
+  return send_internal_at_command(dev, container, -1, NULL, 0, );
+}
+
 /
  * name: lwm2mstub_send_getqueuemode
  /
diff --git a/lte/alt1250/alt1250_atcmd.h b/lte/alt1250/alt1250_atcmd.h
index 62cc56d1e..d732a3313 100644
--- a/lte/alt1250/alt1250_atcmd.h
+++ b/lte/alt1250/alt1250_atcmd.h
@@ -109,6 +109,13 @@ int ltenwop_send_getnwop(FAR struct alt1250_s *dev,
 int ltenwop_send_setnwoptp(FAR struct alt1250_s *dev,
FAR struct alt_container_s *container);
 
+int ltesp_send_getscanplan(FAR struct alt1250_s *dev,
+   FAR struct alt_container_s *container);
+
+int ltesp_send_setscanplan(FAR struct alt1250_s *dev,
+   FAR struct alt_container_s *container,
+   bool enable);
+
 int lwm2mstub_send_getqueuemode(FAR struct alt1250_s *dev,
 FAR struct alt_container_s *container,
 int16_t usockid, FAR int32_t *ures);
diff --git a/lte/alt1250/alt1250_reset_seq.c b/lte/alt1250/alt1250_reset_seq.c
index 31192edaf..3dc836803 100644
--- a/lte/alt1250/alt1250_reset_seq.c
+++ b/lte/alt1250/alt1250_reset_seq.c
@@ -192,6 +192,37 @@ static int recv_atreply_onreset(atreply_parser_t parse,
   return ret;
 }
 
+/
+ * name: alt1250_disable_scanplan
+ /
+
+static int alt1250_disable_scanplan(FAR struct alt1250_s *dev,
+FAR struct alt_container_s *container)
+{
+  int recv_ret;
+  struct atreply_truefalse_s t_or_f;
+
+  t_or_f.target_str = "0";
+  ltesp_send_getscanplan(dev, container);
+  recv_ret = recv_atreply_onreset(check_atreply_truefalse, dev, _or_f);
+  if (recv_ret == REP_MODEM_RESET)
+{
+  return recv_ret;
+}
+
+  if (!t_or_f.result)
+{
+  ltesp_send_setscanplan(dev, container, false);
+  recv_ret = recv_atreply_onreset(check_atreply_ok, dev, NULL);
+  if (recv_ret == REP_MODEM_RESET)
+{
+  return recv_ret;
+}
+}
+
+  return recv_ret;
+}
+
 /
  * name: alt1250_lwm2m_ponreset
  /
@@ -319,6 +350,14 @@ static int alt1250_lwm2m_ponreset(FAR struct alt1250_s 
*dev,
   ret = REP_SEND_ACK;
 }
 
+  /* Make sure SCAN_PALAN_EN is 0 */
+
+  recv_ret = alt1250_disable_scanplan(dev, container);
+  if (recv_ret == REP_MODEM_RESET)
+{
+  return recv_ret;
+   

Re: [PR] lte/alt1250: Force change modem parameter [nuttx-apps]

2024-02-14 Thread via GitHub


jerpelea merged PR #2287:
URL: https://github.com/apache/nuttx-apps/pull/2287


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] lte/alt1250: Force change modem parameter [nuttx-apps]

2024-02-14 Thread via GitHub


SPRESENSE opened a new pull request, #2287:
URL: https://github.com/apache/nuttx-apps/pull/2287

   ## Summary
   In some conditions, LTE connection has issue.
   To fix it, need to change a modem parameter.
   
   ## Impact
   Only ALT1250 daemon.
   
   ## Testing
   Test with Spresense LTE board.
   


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] boards/sim: disable libcxxtest tenatively [nuttx]

2024-02-14 Thread via GitHub


yf13 opened a new pull request, #11696:
URL: https://github.com/apache/nuttx/pull/11696

   
   ## Summary
   
   This config failes CI check on `MacOS(sim-01)` in the past week. It blocks 
multiple PRs. This patch disables it tenatively so that to unblock PRs. The 
error looks like:
   
   ```
   Error: 
/Applications/Xcode_15.0.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/mach/vm_page_size.h:59:44:
 error: expected ';' after top level declarator
   ```
   
   ## Impact
   
   CI checks
   
   ## Testing
   
   CI check
   


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(nuttx-website) branch asf-site updated: Publishing web: 84004c1f6038fbc126201fb37e0fd519312f2d68 docs: 87ad1196e1411f8cb2affa190bd47dd9d6bc7517

2024-02-14 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 a17a1733 Publishing web: 84004c1f6038fbc126201fb37e0fd519312f2d68 
docs: 87ad1196e1411f8cb2affa190bd47dd9d6bc7517
a17a1733 is described below

commit a17a1733fef739757918c452214e0dce9461a43a
Author: Tomasz 'CeDeROM' CEDRO 
AuthorDate: Thu Feb 15 00:14:51 2024 +

Publishing web: 84004c1f6038fbc126201fb37e0fd519312f2d68 docs: 
87ad1196e1411f8cb2affa190bd47dd9d6bc7517
---
 content/docs/10.0.0/index.html | 2 +-
 content/docs/10.0.0/searchindex.js | 2 +-
 content/docs/10.0.1/index.html | 2 +-
 content/docs/10.0.1/searchindex.js | 2 +-
 content/docs/10.1.0/index.html | 2 +-
 content/docs/10.1.0/searchindex.js | 2 +-
 content/docs/10.2.0/index.html | 2 +-
 content/docs/10.2.0/searchindex.js | 2 +-
 content/docs/10.3.0/index.html | 2 +-
 content/docs/10.3.0/searchindex.js | 2 +-
 content/docs/11.0.0/index.html | 2 +-
 content/docs/11.0.0/searchindex.js | 2 +-
 content/docs/12.0.0/index.html | 2 +-
 content/docs/12.0.0/searchindex.js | 2 +-
 content/docs/12.1.0/index.html | 2 +-
 content/docs/12.1.0/searchindex.js | 2 +-
 content/docs/12.2.0/index.html | 2 +-
 content/docs/12.2.0/searchindex.js | 2 +-
 content/docs/12.2.1/index.html | 2 +-
 content/docs/12.2.1/searchindex.js | 2 +-
 content/docs/12.3.0/index.html | 2 +-
 content/docs/12.3.0/searchindex.js | 2 +-
 content/docs/12.4.0/index.html | 2 +-
 content/docs/12.4.0/searchindex.js | 2 +-
 content/docs/latest/index.html | 2 +-
 content/docs/latest/searchindex.js | 2 +-
 content/feed.xml   | 4 ++--
 27 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/content/docs/10.0.0/index.html b/content/docs/10.0.0/index.html
index d34734e2..c2b9c053 100644
--- a/content/docs/10.0.0/index.html
+++ b/content/docs/10.0.0/index.html
@@ -131,7 +131,7 @@ by following these 
 NuttX Documentation
 NuttX is a real-time operating system (RTOS) with an emphasis on standards 
compliance and small footprint. Scalable from 8-bit to 32-bit microcontroller 
environments, the primary governing standards in NuttX are Posix and ANSI 
standards. Additional standard APIs from Unix and other common RTOS’s (such as 
VxWorks) are adopted for functionality not available under these standards, or 
for functionality that is not appropriate for deeply-embedded environments 
(such as fork()).
-Last Updated: 14 February 24 at 00:09
+Last Updated: 15 February 24 at 00:09
 
 Table of 
Contents
 
diff --git a/content/docs/10.0.0/searchindex.js 
b/content/docs/10.0.0/searchindex.js
index 96512054..1787f8a5 100644
--- a/content/docs/10.0.0/searchindex.js
+++ b/content/docs/10.0.0/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["applications/index", "boards/index", 
"components/binfmt", "components/drivers/block/index", 
"components/drivers/character/analog", "components/drivers/character/can", 
"components/drivers/character/index", "components/drivers/character/keypad", 
"components/drivers/character/pwm", "components/drivers/character/quadrature", 
"components/drivers/character/rtc", "components/drivers/character/serial", 
"components/drivers/character/timer", "components/drivers/chara [...]
\ No newline at end of file
+Search.setIndex({"docnames": ["applications/index", "boards/index", 
"components/binfmt", "components/drivers/block/index", 
"components/drivers/character/analog", "components/drivers/character/can", 
"components/drivers/character/index", "components/drivers/character/keypad", 
"components/drivers/character/pwm", "components/drivers/character/quadrature", 
"components/drivers/character/rtc", "components/drivers/character/serial", 
"components/drivers/character/timer", "components/drivers/chara [...]
\ No newline at end of file
diff --git a/content/docs/10.0.1/index.html b/content/docs/10.0.1/index.html
index 687263d7..ee062064 100644
--- a/content/docs/10.0.1/index.html
+++ b/content/docs/10.0.1/index.html
@@ -155,7 +155,7 @@ by following these 
 NuttX Documentation
 NuttX is a real-time operating system (RTOS) with an emphasis on standards 
compliance and small footprint. Scalable from 8-bit to 32-bit microcontroller 
environments, the primary governing standards in NuttX are Posix and ANSI 
standards. Additional standard APIs from Unix and other common RTOS’s (such as 
VxWorks) are adopted for functionality not available under these standards, or 
for functionality that is not appropriate for deeply-embedded environments 
(such as fork()).
-Last Updated: 14 February 24 at 00:10
+Last Updated: 15 February 24 at 00:09
 
 Table of 
Contents
 
diff --git a/content/docs/10.0.1/searchindex.js 
b/content/docs/10.0.1/searchindex.js
index 5955c444..2cac6118 100644
--- a/content/docs/10.0.1/searchindex.js
+++ 

(nuttx-apps) branch master updated: examples/rmtchar: Increase initial duration time

2024-02-14 Thread hartmannathan
This is an automated email from the ASF dual-hosted git repository.

hartmannathan 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 9fd1251dc examples/rmtchar: Increase initial duration time
9fd1251dc is described below

commit 9fd1251dcbb44a824fe7d53aa90ca36939f01179
Author: Tiago Medicci Serrano 
AuthorDate: Fri Feb 9 16:14:47 2024 -0300

examples/rmtchar: Increase initial duration time

With higher RMT source clocks, small durations are hard to be
detected. Increasing it makes it easier to enable automated tests.
---
 examples/rmtchar/rmtchar_transmitter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/rmtchar/rmtchar_transmitter.c 
b/examples/rmtchar/rmtchar_transmitter.c
index e1b2c1a98..249f877ae 100644
--- a/examples/rmtchar/rmtchar_transmitter.c
+++ b/examples/rmtchar/rmtchar_transmitter.c
@@ -78,7 +78,7 @@ pthread_addr_t rmtchar_transmitter(pthread_addr_t arg)
 {
   FAR struct rmtchar_state_s *rmtchar = (FAR struct rmtchar_state_s *)arg;
   struct rmt_item32_s buf[rmtchar->rmtchar_items];
-  int duration = 100;
+  int duration = 1000;
   int nwritten;
   int fd;
   int i;



Re: [PR] examples/rmtchar: Increase initial duration time [nuttx-apps]

2024-02-14 Thread via GitHub


hartmannathan merged PR #2285:
URL: https://github.com/apache/nuttx-apps/pull/2285


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



(nuttx) branch master updated: rptun/rptun_initialize: add explicit initialization for variable

2024-02-14 Thread hartmannathan
This is an automated email from the ASF dual-hosted git repository.

hartmannathan 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 87ad1196e1 rptun/rptun_initialize: add explicit initialization for 
variable
87ad1196e1 is described below

commit 87ad1196e1411f8cb2affa190bd47dd9d6bc7517
Author: Yanfeng Liu 
AuthorDate: Tue Feb 13 12:37:50 2024 +0800

rptun/rptun_initialize: add explicit initialization for variable

This explicitly initializes variable `onceinit` before use.

Signed-off-by: Yanfeng Liu 
---
 drivers/rptun/rptun.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rptun/rptun.c b/drivers/rptun/rptun.c
index 16664df123..023b9bfca1 100644
--- a/drivers/rptun/rptun.c
+++ b/drivers/rptun/rptun.c
@@ -849,7 +849,7 @@ int rptun_initialize(FAR struct rptun_dev_s *dev)
 {
   struct metal_init_params params = METAL_INIT_DEFAULTS;
   FAR struct rptun_priv_s *priv;
-  static bool onceinit;
+  static bool onceinit = false;
   FAR char *argv[3];
   char arg1[19];
   char name[32];



Re: [PR] rptun/rptun_initialize: add explicit initialization for variable [nuttx]

2024-02-14 Thread via GitHub


hartmannathan merged PR #11687:
URL: https://github.com/apache/nuttx/pull/11687


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fix typo error in quickstart compiling_cmake [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS commented on PR #11694:
URL: https://github.com/apache/nuttx/pull/11694#issuecomment-1944065348

   > git commit --amend git push -f
   
   sincerely thx, it works!


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fix typo error in quickstart compiling_cmake [nuttx]

2024-02-14 Thread via GitHub


jerpelea commented on PR #11694:
URL: https://github.com/apache/nuttx/pull/11694#issuecomment-1943870714

   git commit --amend
   git push -f
   


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fix typo error in quickstart compiling_cmake [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS commented on PR #11694:
URL: https://github.com/apache/nuttx/pull/11694#issuecomment-1943781442

   > please copy PR description as commit message
   
   I am trying, but wondering how to add this description to commit message, do 
I need to make another 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 go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] fix typo error in quickstart compiling_cmake [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS opened a new pull request, #11694:
URL: https://github.com/apache/nuttx/pull/11694

   I used
   ··
   cd nuttx
   cmake -B build -DBOARD_CONFIG=stm32f401rc-rs485:nsh -GNinja
   ··
   to config
   and when following the instruction in this official websites I found the 
command to use cmake to build the target is wrong.
   which is "cmake --build build -t menuconfig" also wrong the output dir 
"build/nuttx".
   and by the way, In my practice I find the bin file and elf file is not in 
build/nuttx but in build/. So I changed these. But I'm not 100% sure that my 
fix is right as I'm a beginner, but what I fix works fine in my computer. This 
is my first PR to the public doc. My fix maybe totally wrong as I am not get 
into the nuttx, just following the instruction and encountered some mistakes.
   thx for reviewing


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fixing typo error in quickstart compiling cmake doc [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS closed pull request #11692: fixing typo error in quickstart compiling 
cmake doc
URL: https://github.com/apache/nuttx/pull/11692


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fixing typo error in quickstart compiling cmake doc [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS commented on PR #11692:
URL: https://github.com/apache/nuttx/pull/11692#issuecomment-1943717436

   > please remove the "merge "
   
   oh, It's my fault, didn't know how to launch a pull request. May you close 
this PR I'll refork another one with a single commits?


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] docs/tmpfs: add initial document [nuttx]

2024-02-14 Thread via GitHub


yf13 opened a new pull request, #11693:
URL: https://github.com/apache/nuttx/pull/11693

   
   ## Summary
   
   This adds initial document for using TMPFS based on my short experience, 
hoping to save people's time on guessing how to use.
   
   ## Impact
   
   None
   
   ## Testing
   
   CI checks
   


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] fixing typo error in quickstart compiling cmake doc [nuttx]

2024-02-14 Thread via GitHub


jerpelea commented on PR #11692:
URL: https://github.com/apache/nuttx/pull/11692#issuecomment-1943614881

   please remove the "merge "


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [I] issue with c++ exceptions support + elf loading [nuttx]

2024-02-14 Thread via GitHub


abhishek-samsung commented on issue #11689:
URL: https://github.com/apache/nuttx/issues/11689#issuecomment-1943585060

   Hello @acassis , could you please help me with this issue? Are exceptions 
with elf loading working on any other ARM cortex M boards?
   
   Also, I found that all the newly created sections have the SHF_GROUP flag. 
And its not handled in elf loading. Any guidance or reference on this would be 
very helpful.


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] fixing typo error in quickstart compiling cmake doc [nuttx]

2024-02-14 Thread via GitHub


KMSorSMS opened a new pull request, #11692:
URL: https://github.com/apache/nuttx/pull/11692

   I used
   ··
   cd nuttx
   cmake -B build -DBOARD_CONFIG=stm32f401rc-rs485:nsh -GNinja
   ··
   to config
   and when following the instruction in this official websites I found the 
command to use cmake to build the target is wrong.
   which is "cmake --build build -t menuconfig" also wrong the output dir 
"build/nuttx".
   and by the way, In my practice I find the bin file and elf file is not in 
build/nuttx but in build/. So I changed these. But I'm not 100% sure that my 
fix is right as I'm a beginner, but what I fix works fine in my computer. This 
is my first PR to the public doc. My fix maybe totally wrong as I am not get 
into the nuttx, just following the instruction and encountered some mistakes.
   thx for reviewing
   
   


-- 
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.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org