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

I followed the simple instructions for compiling the `sim:nsh` configuration (https://nuttx.apache.org/docs/latest/guides/simulator.html). Near the end of the compilation, I get a compilation failure: ``` /home/koen/Documents/Projects/NuttX/sim/master/apps/nshlib/nsh_romfsetc.c:89: undefined reference to `romfs_img_len' /usr/bin/ld: /home/koen/Documents/Projects/NuttX/sim/master/apps/nshlib/nsh_romfsetc.c:91:...

if put bellow in user apps Makefile ``` Makefile EXTRA_LIBPATHS += -L $(PWD) LIBPATHS += $(PWD) EXTRA_LIBS += -lnimcache ``` it seems, when linking the final binary, these flags were...

I decide to report it to prevent forgetting this issue. Although the device is not detected writing to it working correctly: ``` nsh> i2c set -a 77 1e WROTE Bus:...

Hi, I'm doing some cleanup work on the Makefiles in incubator-nuttx. See https://github.com/apache/incubator-nuttx/issues/5205 for more details. I'm trying to figure out exactly what the `platform` folder is being used for....

An application `Make.defs` can define multiple builtin applications by using something like: ```Makefile MAINCSRCS = a.c b.c PROGNAME = a b ``` When building `a.c` the `-Dmain=a_main` will be defined,...

bug

When downloading images in mcuboot_agent application from a URL with a GET command it would be a good feature to add a function that lets you send board custom headers...

Writing from a single character array in the USB serial example in a single thread causes the bytes to write out of order. Ex, define the string as: ``` static...

## Summary it's easy to handle \n or \r\n ending correctly, so let's reduce the possible option to one(EOL_IS_CR). ## Impact The end line handling ## Testing Please ignore the...

Some features of Mbed TLS library may be configured via a `mbedtls_config.h` header. NuttX currently provides default configuration with a set of cryptographic algorithms. A much welcome improvement is to...

enhancement
good first issue
modularity

Related to https://github.com/apache/incubator-nuttx-apps/issues/834 I was trying to determine a way to use the timer with my NUCLEOH743ZI2 board. Following the guidelines provided in the above issue, I was still experiencing...