[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5498: sched: Implement task local storage

2022-02-19 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5498: URL: https://github.com/apache/incubator-nuttx/pull/5498#discussion_r810468502 ## File path: sched/task/task_tls_alloc.c ## @@ -0,0 +1,113 @@ +/*

[GitHub] [incubator-nuttx] minabeoki opened a new pull request #5548: mm: fix #if condition of g_mmheap for BUILD_KERNEL and ADDRENV

2022-02-19 Thread GitBox
minabeoki opened a new pull request #5548: URL: https://github.com/apache/incubator-nuttx/pull/5548 ## Summary When BUILD_KERNEL=y and ADDRENV=y, "g_mmheap" is not required. `__KERNEL__` is only defned in the kernel binary, so use `CONFIG_BUILD_KERNEL` in this code. related

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #5545: sched/clock: Remove CLOCK_MONOTONIC option from Kconfig

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #5545: URL: https://github.com/apache/incubator-nuttx/pull/5545#issuecomment-1045976716 > @xiaoxiang781216 many drivers are using it, I think you only fixed some, please take a look: $ git grep CONFIG_CLOCK_MONOTONIC > > ``` > drivers/sens

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on pull request #5545: sched/clock: Remove CLOCK_MONOTONIC option from Kconfig

2022-02-19 Thread GitBox
xiaoxiang781216 edited a comment on pull request #5545: URL: https://github.com/apache/incubator-nuttx/pull/5545#issuecomment-1045976716 > @xiaoxiang781216 many drivers are using it, I think you only fixed some, please take a look: $ git grep CONFIG_CLOCK_MONOTONIC > > ``` > drive

[incubator-nuttx] branch master updated (baa4bf1 -> 9739be1)

2022-02-19 Thread xiaoxiang
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/incubator-nuttx.git. from baa4bf1 sim: Enable Rust suppport for hello_rust application. add 9739be1 Doc/sim: Add documentati

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5546: Doc/sim: Add documentation about LVGL and VNC

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #5546: URL: https://github.com/apache/incubator-nuttx/pull/5546 -- 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

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #5519: Fix -Werror=nonnull-compare and -Werror=format-truncation=

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #5519: URL: https://github.com/apache/incubator-nuttx/pull/5519#issuecomment-1045978970 > I recognize that by having the various NULL checks, some compilers may issue warnings about impossible code paths, etc. Yes, but this is just for some

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #5539: mm: handle take mm sem in IRQ

2022-02-19 Thread GitBox
xiaoxiang781216 commented on a change in pull request #5539: URL: https://github.com/apache/incubator-nuttx/pull/5539#discussion_r810471614 ## File path: mm/mm_heap/mm_sem.c ## @@ -80,9 +80,21 @@ bool mm_takesemaphore(FAR struct mm_heap_s *heap) if (up_interrupt_context())

[incubator-nuttx-apps] branch master updated: apps: Enable Rust based application.

2022-02-19 Thread xiaoxiang
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-apps.git The following commit(s) were added to refs/heads/master by this push: new df6b892 apps: Enable Rust base

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014 -- 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

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1045981487 @ptka could you add a hello rust program to demonstrate how to write rust application on NuttX? -- This is an automated message from the Apache Git Serv

[GitHub] [incubator-nuttx] minabeoki opened a new pull request #5549: pthread: add the kernel stack allocation for ADDRENV=y and BUILD_KERNEL

2022-02-19 Thread GitBox
minabeoki opened a new pull request #5549: URL: https://github.com/apache/incubator-nuttx/pull/5549 ## Summary Add the kernel stack allocation in nx_pthread_create(). When ADDRENV=y and BUILD_KERNEL=y, the kernel stack is required for a task creating. The kernel stack alloc

[GitHub] [incubator-nuttx-apps] ptka commented on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
ptka commented on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1045984745 Yes, that's coming next. There are three more steps to go: /1/ hello_rust /2/ add rust to CI set-up /3/ add defcondig sim:rust How can I ge

[GitHub] [incubator-nuttx-apps] ptka edited a comment on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
ptka edited a comment on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1045984745 Yes, that's coming next. There are a couple of more steps to go to make Rust productive usable: /1/ hello_rust /2/ add rust to CI set-up /3

[incubator-nuttx] branch master updated (9739be1 -> 682984e)

2022-02-19 Thread xiaoxiang
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/incubator-nuttx.git. from 9739be1 Doc/sim: Add documentation about LVGL and VNC add 682984e add the kernel stack allocation

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5549: pthread: add the kernel stack allocation for ADDRENV=y and BUILD_KERNEL

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #5549: URL: https://github.com/apache/incubator-nuttx/pull/5549 -- 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

[incubator-nuttx] branch master updated: fix #if condition of g_mmheap for BUILD_KERNEL.

2022-02-19 Thread xiaoxiang
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 484eb17 fix #if condition of g_mmhe

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5548: mm: fix #if condition of g_mmheap for BUILD_KERNEL and ADDRENV

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #5548: URL: https://github.com/apache/incubator-nuttx/pull/5548 -- 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

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #1005: Remove CONFIG_CLOCK_MONOTONIC special code

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #1005: URL: https://github.com/apache/incubator-nuttx-apps/pull/1005#issuecomment-1045998578 > @xiaoxiang781216 what happened to CLOCK_REALTIME? If I'm not wrong CLOCK_REALTIME is affected when you change the time/date and CLOCK_MONOTONIC is not.

[GitHub] [incubator-nuttx-apps] ptka edited a comment on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
ptka edited a comment on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1045984745 Yes, that's coming next. There are a couple of more steps to go to make Rust productive usable: /1/ hello_rust /2/ add rust to CI set-up /3

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5550: input: Add x11_xf86keysym.h header file

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #5550: URL: https://github.com/apache/incubator-nuttx/pull/5550 ## Summary from: https://github.com/freedesktop/xorg-x11proto/blob/master/XF86keysym.h ## Impact Minor, new x11 keysym ## Testing Pass CI -- This is an a

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5551: serial/pty: Remove the unused code related to CONFIG_PSEUDOTERM_FULLBLOCKS

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #5551: URL: https://github.com/apache/incubator-nuttx/pull/5551 ## Summary Remove the dead code ## Impact No ## Testing Pass CI -- This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5552: arm/rtl8720c: Remove the unused Toolchain.defs

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #5552: URL: https://github.com/apache/incubator-nuttx/pull/5552 ## Summary Remove the dead code ## Impact No ## Testing Pass CI -- This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5553: Nocommon

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #5553: URL: https://github.com/apache/incubator-nuttx/pull/5553 ## Summary Follow up the change: https://github.com/apache/incubator-nuttx/pull/5485 ## Impact elf loader ## Testing Pass CI -- This is an automated message

[GitHub] [incubator-nuttx-apps] zouboan commented on pull request #1001: industry/foc: add support for angle from sensorless observer

2022-02-19 Thread GitBox
zouboan commented on pull request #1001: URL: https://github.com/apache/incubator-nuttx-apps/pull/1001#issuecomment-1046019966 > Some cosmetic suggestions and please squash commits together. I took your suggestion, but I'm sorry, the info about your commits is lost after squash --

[GitHub] [incubator-nuttx-apps] zouboan edited a comment on pull request #1001: industry/foc: add support for angle from sensorless observer

2022-02-19 Thread GitBox
zouboan edited a comment on pull request #1001: URL: https://github.com/apache/incubator-nuttx-apps/pull/1001#issuecomment-1046019966 > Some cosmetic suggestions and please squash commits together. @raiden00pl I took your suggestion, but I'm sorry, the info about your commits is l

[GitHub] [incubator-nuttx] flavioipiranga commented on issue #5530: libxx "C++ Example using CMake" guide "No thread API" error

2022-02-19 Thread GitBox
flavioipiranga commented on issue #5530: URL: https://github.com/apache/incubator-nuttx/issues/5530#issuecomment-1046021255 I made some changes based at what you mentioned and the discussion at the link. First I added the #define __NuttX__ at the CMakeLists.txt here: `set(AC_DEFI

[GitHub] [incubator-nuttx] flavioipiranga edited a comment on issue #5530: libxx "C++ Example using CMake" guide "No thread API" error

2022-02-19 Thread GitBox
flavioipiranga edited a comment on issue #5530: URL: https://github.com/apache/incubator-nuttx/issues/5530#issuecomment-1046021255 I made some changes based at what you mentioned and the discussion at the link. First I added the #define __NuttX__ at the CMakeLists.txt here: `set(

[GitHub] [incubator-nuttx-apps] ptka opened a new pull request #1015: apps: hello_rust example program

2022-02-19 Thread GitBox
ptka opened a new pull request #1015: URL: https://github.com/apache/incubator-nuttx-apps/pull/1015 ## Summary Hello, Rust!! ## Impact nothing as it's new ## Testing Simulation on MacBook Air M1 with Monterey 12.2.1 using rustc rustc 1.58.1 (stable) via Homebrew.

[GitHub] [incubator-nuttx-apps] raiden00pl merged pull request #1001: industry/foc: add support for angle from sensorless observer

2022-02-19 Thread GitBox
raiden00pl merged pull request #1001: URL: https://github.com/apache/incubator-nuttx-apps/pull/1001 -- 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

[incubator-nuttx-apps] branch master updated: industry/foc: add support for angle from sensorless observer

2022-02-19 Thread raiden00
This is an automated email from the ASF dual-hosted git repository. raiden00 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 34e4da2 industry/foc: add suppo

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #1015: apps: hello_rust example program

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #1015: URL: https://github.com/apache/incubator-nuttx-apps/pull/1015#issuecomment-1046033694 @ptka can we run it on the real device? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1046036224 Very nice! I am exciting rust will be officially supported on NuttX by your effort: > Yes, that's coming next. > > There are a couple of more ste

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 edited a comment on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
xiaoxiang781216 edited a comment on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1046036224 Very nice! I am very exciting that rust will be officially supported on NuttX by your effort: > Yes, that's coming next. > > There are a c

[GitHub] [incubator-nuttx] minabeoki opened a new pull request #5554: pfocfs: add newline /proc/*/loadavg snprintf format

2022-02-19 Thread GitBox
minabeoki opened a new pull request #5554: URL: https://github.com/apache/incubator-nuttx/pull/5554 ## Summary Add newline to snprintf format for /proc/*/loadavg. current: ``` nsh> cat /proc/5/loadavg 0.1%nsh> ``` this patch: ``` nsh> cat /proc/5/loadavg

[GitHub] [incubator-nuttx-apps] ptka commented on pull request #1015: apps: hello_rust example program

2022-02-19 Thread GitBox
ptka commented on pull request #1015: URL: https://github.com/apache/incubator-nuttx-apps/pull/1015#issuecomment-1046036859 Yes, I did some first test on a Raspberry Pico RP2040 device and it seems to run. Once sim:rust is enabled and working (incl. CI), a configuration for a real targ

[GitHub] [incubator-nuttx-apps] ptka commented on pull request #1014: apps: Enable Rust based application.

2022-02-19 Thread GitBox
ptka commented on pull request #1014: URL: https://github.com/apache/incubator-nuttx-apps/pull/1014#issuecomment-1046037759 Thanks for pointing to further documentation. Let me walk through them. I'll come back, if I have more questions. -- This is an automated message from the Apache G

[GitHub] [incubator-nuttx] davids5 commented on a change in pull request #5539: mm: handle take mm sem in IRQ

2022-02-19 Thread GitBox
davids5 commented on a change in pull request #5539: URL: https://github.com/apache/incubator-nuttx/pull/5539#discussion_r810504834 ## File path: mm/mm_heap/mm_sem.c ## @@ -80,9 +80,21 @@ bool mm_takesemaphore(FAR struct mm_heap_s *heap) if (up_interrupt_context()) {

[GitHub] [incubator-nuttx-apps] raiden00pl opened a new pull request #1016: industry/foc: various fixes

2022-02-19 Thread GitBox
raiden00pl opened a new pull request #1016: URL: https://github.com/apache/incubator-nuttx-apps/pull/1016 ## Summary - industry/foc: rename dir to sensor_dir to be clear that it relates to the direction of the sensor, no movement direction - industry/foc: fix compilation for smo

[incubator-nuttx] branch master updated (484eb17 -> e9bd959)

2022-02-19 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 484eb17 fix #if condition of g_mmheap for BUILD_KERNEL. add e9bd959 add new line to /proc/*/load

[GitHub] [incubator-nuttx] Ouss4 merged pull request #5554: pfocfs: add newline /proc/*/loadavg snprintf format

2022-02-19 Thread GitBox
Ouss4 merged pull request #5554: URL: https://github.com/apache/incubator-nuttx/pull/5554 -- 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-

[incubator-nuttx-apps] 01/05: industry/foc: rename dir to sensor_dir to be clear that it relates to the direction of the sensor, no movement direction

2022-02-19 Thread xiaoxiang
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-apps.git commit d6cdc5a4237d11eb768e61504733efd8927cd750 Author: raiden00pl AuthorDate: Sat Feb 19 17:36:40 2022 +0100

[incubator-nuttx-apps] 03/05: industry/foc: update comments

2022-02-19 Thread xiaoxiang
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-apps.git commit c16f1408a6f56a8040308c68d7ac97ec21a4d4c6 Author: raiden00pl AuthorDate: Sat Feb 19 17:37:30 2022 +0100

[incubator-nuttx-apps] branch master updated (34e4da2 -> 7df20da)

2022-02-19 Thread xiaoxiang
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/incubator-nuttx-apps.git. from 34e4da2 industry/foc: add support for angle from sensorless observer new d6cdc5a industry/foc

[incubator-nuttx-apps] 02/05: industry/foc: fix compilation for smo

2022-02-19 Thread xiaoxiang
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-apps.git commit d76a7c242bbc1c256e4d1bdd1d868983f1fe9291 Author: raiden00pl AuthorDate: Sat Feb 19 17:37:07 2022 +0100

[incubator-nuttx-apps] 04/05: industry/foc: remove choice option for angle observers

2022-02-19 Thread xiaoxiang
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-apps.git commit 8422f9c3f99afde38c2356eb3bf6392436094aa8 Author: raiden00pl AuthorDate: Sat Feb 19 18:11:53 2022 +0100

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #1016: industry/foc: various fixes

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #1016: URL: https://github.com/apache/incubator-nuttx-apps/pull/1016 -- 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

[incubator-nuttx-apps] branch master updated: apps: hello_rust example program

2022-02-19 Thread xiaoxiang
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-apps.git The following commit(s) were added to refs/heads/master by this push: new c175766 apps: hello_rust examp

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 merged pull request #1015: apps: hello_rust example program

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #1015: URL: https://github.com/apache/incubator-nuttx-apps/pull/1015 -- 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

[incubator-nuttx-apps] 05/05: industry/foc: refactor and fixes for angle observers

2022-02-19 Thread xiaoxiang
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-apps.git commit 7df20da96c7e37b20ee34a5a73b75ca1e16e Author: raiden00pl AuthorDate: Sat Feb 19 18:17:04 2022 +0100

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #5485: boards: sabre-6quad: Add -fno-common to Make.defs

2022-02-19 Thread GitBox
xiaoxiang781216 commented on pull request #5485: URL: https://github.com/apache/incubator-nuttx/pull/5485#issuecomment-1046128497 > Hmm, I don't know why the Build / macOS (macos) failed. > > ``` > ===

[incubator-nuttx-website] branch asf-site updated: Publishing web: 1b39f27b512cbb1fc294b70e0e70a67d0092b98d docs: e9bd95942574047a17cb0d3e997faf385fe0b612

2022-02-19 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/incubator-nuttx-website.git The following commit(s) were added to refs/heads/asf-site by this push: new bb2c417 Publishing web

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5555: boards: Remove the unnecessary customize Make.defs

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #: URL: https://github.com/apache/incubator-nuttx/pull/ ## Summary since the general Make.defs in scripts folder is enough ## Impact No ## Testing Pass CI -- This is an automated message from the Apache Git Servi

[GitHub] [incubator-nuttx] ptka opened a new pull request #5556: ci: add Rust compiler suite

2022-02-19 Thread GitBox
ptka opened a new pull request #5556: URL: https://github.com/apache/incubator-nuttx/pull/5556 ## Summary Add Rust compiler suite Preparation to enable sim:rust defconfig with hell_rust application ## Impact current ci build configurations ## Testing partly on Linux

[GitHub] [incubator-nuttx] xiaoxiang781216 merged pull request #5556: ci: add Rust compiler suite

2022-02-19 Thread GitBox
xiaoxiang781216 merged pull request #5556: URL: https://github.com/apache/incubator-nuttx/pull/5556 -- 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

[incubator-nuttx] branch master updated (e9bd959 -> bb3d8c3)

2022-02-19 Thread xiaoxiang
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/incubator-nuttx.git. from e9bd959 add new line to /proc/*/loadavg snprintf format. add bb3d8c3 ci: add Rust compiler suite

[incubator-nuttx] branch master updated: arm/rtl8720c: Remove the unused Toolchain.defs

2022-02-19 Thread pkarashchenko
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 d29f3bd arm/rtl8720c: Remove th

[GitHub] [incubator-nuttx] pkarashchenko merged pull request #5552: arm/rtl8720c: Remove the unused Toolchain.defs

2022-02-19 Thread GitBox
pkarashchenko merged pull request #5552: URL: https://github.com/apache/incubator-nuttx/pull/5552 -- 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:

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5550: input: Add x11_xf86keysym.h header file

2022-02-19 Thread GitBox
pkarashchenko commented on a change in pull request #5550: URL: https://github.com/apache/incubator-nuttx/pull/5550#discussion_r810563476 ## File path: include/nuttx/input/x11_xf86keysym.h ## @@ -0,0 +1,425 @@ +/**

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #5557: boards: Replace CONFIG_CYGWIN_WINTOOL with CONVERT_PATH

2022-02-19 Thread GitBox
xiaoxiang781216 opened a new pull request #5557: URL: https://github.com/apache/incubator-nuttx/pull/5557 ## Summary Continue the change: https://github.com/apache/incubator-nuttx/pull/5496 ## Impact Same as before ## Testing Pass CI -- This is an automated mess

[GitHub] [incubator-nuttx] minabeoki opened a new pull request #5558: armv7-a/r: fix SVC's sp restore in arm_vectors.S

2022-02-19 Thread GitBox
minabeoki opened a new pull request #5558: URL: https://github.com/apache/incubator-nuttx/pull/5558 ## Summary * armv7-a has banked registers for each cpu mode. * NuttX uses SVC mode and USR mode when BUILD_KERNEL=y. * The exception handler in armv7-a/arm_vectors.S need to maint