nuttx-apps icon indicating copy to clipboard operation
nuttx-apps copied to clipboard

Apache NuttX Apps is a collection of tools, shells, network utilities, libraries, interpreters and can be used with the NuttX RTOS

Results 127 nuttx-apps issues
Sort by recently updated
recently updated
newest added

There are some cases that `open()` is called with wrong arguments. Here are some examples that I managed to find: In NSH, [here](https://github.com/apache/nuttx-apps/blob/master/nshlib/nsh_script.c#L54) a file is opened without oflags (e.g....

This was originally raised by @acassis in #1816 and #1810. However I've only just got a chance to have a look at it. To summarize, applications built against Nuttx export...

This is an issue to note DFU firmware flash possibility to Nordic Chips (like nRF52) as noted in https://github.com/apache/nuttx-apps/pull/1794#issuecomment-1591769020 when @raiden00pl provided USB Console patch. * Our help page [1]...

Looking for a suitable implementation to control a matrix keyboard I unfortunately didn't find it anywhere. An example would be nice, how to define GPIOs for Row and Column, if...

Recently (OK! one month ago) @caramelli add support for NuttX on DirectFB: https://github.com/directfb2/DirectFB2/pull/107/commits/d11102daba0af1f75339d9a27b3b5c9eba242884 It is LGPL, but there is not linking exception as FreeRTOS used to have when it was...

Type: Enhancement

The various apps make use of `strdup()` and `asprintf()`. These calls are not always checked for success. All apps shall be scanned for all uses of `strdup()` and `asprintf()`. Error...

so many simple command line examples and tools could build without CONFIG_FILE_STREAM, which could save around 5KB flash space. Here is one fix: https://github.com/apache/nuttx-apps/issues/1694

Community: Good first issue

While testing the `esp32c3-devkit:crypto` configuration I found out that the `aesctr` is the only test that is failing. This issue was also confirmed by @acassis. Does anyone have any idea...

Trying to test the behaviour of CLE with the new code for character position. I tried this command: ``` nsh>echo "abcd" & ``` to write output in the background and...