nuttx
nuttx copied to clipboard
Apache NuttX is a mature, real-time embedded operating system (RTOS)
### Description / Steps to reproduce the issue  ### On which OS does this issue occur? [OS: Linux] ### What is the version of your OS? all ### NuttX...
### Description / Steps to reproduce the issue  ### On which OS does this issue occur? [OS: Linux] ### What is the version of your OS? all ### NuttX...
### Description / Steps to reproduce the issue Following steps: https://nuttx.apache.org/docs/latest/platforms/arm/rp2040/boards/raspberrypi-pico-w/index.html Ends with error: ``` /home/pb/nuttxspace/nuttx/tools/mkdeps --obj-path bin --obj-suffix .o --dep-path assert --dep-path builtin --dep-path ctype --dep-path dirent --dep-path dlfcn...
### Description / Steps to reproduce the issue Any RP2040 based boards are not passing the OS test for me. The OS test **hangs** at the watchdog test. This happens...
### Description / Steps to reproduce the issue This may not be considered a bug, but the behaviour of `fflush` on files in a littlefs filesystem does not match what...
## Summary nuttx/msgq: add kernel message queue support Currently NuttX have 2 message queue implementations: 1. Posix Message Queue (mq_close/mq_getattr/mq_getsetattr/mq_notify/mq_open/mq_overview/mq_receive/mq_send/mq_setattr/mq_timedreceive/mq_timedsend/mq_unlink) 2. System V Message Queue (msgctl/msgget/msggrep/msginit/msgmerge/msgop/msgrcv/msgsnd) Posix/SysteV message queues meet...
### Description / Steps to reproduce the issue ## Description When building NuttX using CMake (as documented in the [CMake Quickstart](https://nuttx.apache.org/docs/latest/quickstart/compiling_cmake.html)), the build fails during the compilation of `cxxtest_main.cxx` with...
### Description The RMT character driver is ESP vendor specific peripheral so it belongs to `arch/` not common `drivers/` code. This driver should use portable drivers to implement specific functions...
This commit adds support for the KTD2052 LED driver chip. ## Summary Driver implementation necessary to interface with KTD2052 LED driver chips. Originally authored by @ArrestedLightning : https://github.com/ArrestedLightning/nuttx/tree/ktd2052 ## Impact...
### Description For arch configuration, is it acceptable to use separate Kconfig files for logical blocks of the configuration? I am not proposing rework of already implemented Kconfig files, but...