Apache NuttX Apps is a collection of tools, shells, network utilities, libraries, interpreters and can be used with the NuttX RTOS https://nuttx.apache.org/
Find a file
aviralgarg05 3d8bbb8630 system/nxstore: address review findings and fix hardware-found bugs.
Review/hardening findings from the companion nxpkg PRs:

- Own framebuffer/input device paths instead of borrowing
  CONFIG_EXAMPLES_LVGLDEMO_FBDEVPATH/INPUT_DEVPATH from an unrelated
  example app: new CONFIG_SYSTEM_NXSTORE_FBDEVPATH/INPUT_DEVPATH
  Kconfig string options (defaulting to /dev/fb0 and /dev/input0).

- g_index moves from a static struct to a heap-allocated
  FAR struct pkg_index_s * (pkg_zalloc()), with a "Not enough memory to
  load the catalog." UI fallback if the allocation fails.

- nxstore_launch() now loads the specific installed version's manifest
  via pkg_metadata_load_manifest_path() instead of combining a
  rollback-selected version with whatever the current catalog entry
  happens to describe for that name - those can disagree after a
  rollback if the catalog has since moved on. Also passes through the
  installed manifest's launch_args/launch_argc (previously always
  argv[1] = NULL).

- title_text buffer sized PKG_NAME_MAX + PKG_VERSION_MAX + 5 instead of
  a fixed 96, fixing a real compiler truncation warning.

- README.txt moved to the companion NuttX documentation PR rather than
  shipping user-facing documentation as an in-tree README.

Bugs found bringing this up on real hardware:

- LV_EVENT_LONG_PRESSED could fire for a touch that was actually
  driving a scroll of the app list: if a drag starts slowly enough
  that the long-press timer (400ms) elapses before the finger crosses
  the scroll-lock distance, LVGL hasn't committed the gesture to
  scrolling yet and still delivers the long-press event, silently
  uninstalling whatever card the touch happened to land on. Ignore the
  long-press if this input device is currently attributed to scrolling
  any object (lv_indev_get_scroll_obj()).

- Tapping an installed-app card to launch it, while a different
  install was in progress elsewhere in the list (or another app was
  already running), was allowed through unconditionally - install_worker()
  auto-launches its own package once done, and letting a second launch
  through independently meant whichever one finished last silently
  overwrote g_running, leaving the other process alive, unsupervised,
  and drawing into the same shared framebuffer with no way to close it
  from this UI again. Both the direct-launch and fresh-install paths in
  install_btn_event_cb() now refuse (with a toast) if g_running.active
  or g_active.manifest indicate another app is already running or about
  to be.

- nxstore_is_installed() only checked the package *name*, not which
  version was actually on disk - an older installed version showed as
  plain "Installed" identically to a current one, and tapping it
  silently launched the stale payload with no update indication or
  action. Add nxstore_is_up_to_date() (compares the installed version
  against the catalog's latest manifest) and a third status_bar color
  (in addition to not-installed/up-to-date) plus a "Update available -
  tap to update" subtitle for the mismatch case; tapping such a card
  now goes through the install path (which fetches and auto-launches
  the newly installed version) instead of the direct-launch path.

- lv_indev_set_scroll_limit() was set to 255 (copied from examples/
  lvgldemo/lvgldemo.c, whose own touch-drift mitigation this file
  reused), requiring a nearly-full-screen drag before a touch was even
  recognized as a scroll gesture. Unlike that demo, this screen's app
  list is scrolled constantly, and a threshold that large read as
  broken/laggy scrolling rather than drift protection. Lowered to 20,
  enough to reject typical touch-driver jitter while still recognizing
  a real scroll almost immediately; momentum stays off (scroll_throw
  0), which is what the dual-launch/scroll-lock fixes above actually
  depend on, not the gesture-start threshold.

Also adds nxstore_load_icon(): best-effort loads and caches a
package's optional icon (manifest->icon) as a raw RGB565 image LVGL
can render with no decoder (this board has no PNG/JPEG decode
capability), falling back to the existing colored-circle-plus-glyph
rendering on any failure (no icon set, download failed, corrupt/
oversized file) so a bad icon never blocks a package from being
listed or installed.

Assisted-by: Claude:claude-sonnet-5
Signed-off-by: aviralgarg05 <gargaviral99@gmail.com>
2026-07-24 15:25:58 +05:30
.github ci: fix sim/login ROMFS passwd credential for promptpasswd.sh 2026-07-22 17:21:22 +08:00
audioutils applications/audioutils/morsey: Update Morsey version 2026-07-23 09:31:29 +02:00
benchmarks benchmarks/mtd: use uniform output style for numbers 2026-06-10 16:43:17 +08:00
boot boot/mcuboot: Update commit version 2026-05-18 09:03:47 +02:00
builtin include/debug.h: Use <nuttx/debug.h> in apps 2026-04-11 10:39:27 -03:00
canutils canutils/lely: fix unreliable download/unpack/patch logic 2026-07-06 20:04:57 +08:00
cmake examples/rust: Avoid the infinite loop on sim for hello_rust_cargo 2026-06-20 10:33:46 -03:00
crypto apps: fix distclean for partial builds and residual .kconfig files 2026-07-09 09:25:33 +08:00
database apps: add missing module metadata for executable tools 2026-06-22 22:27:07 +08:00
examples examples/txmorse: Example application for transmitting Morse code 2026-07-21 05:46:11 -03:00
fsutils !fsutils/passwd: Replace TEA with PBKDF2-HMAC-SHA256 2026-07-22 17:21:22 +08:00
games games/NXDoom: Use dirent for glob implementation 2026-07-09 01:51:54 +02:00
graphics !apps: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-22 13:38:25 +08:00
import import/Make.defs: use _start entry name 2025-12-10 19:05:56 +08:00
include !fsutils/passwd: Replace TEA with PBKDF2-HMAC-SHA256 2026-07-22 17:21:22 +08:00
industry industry/scpi: add unit parser config options 2026-06-25 23:48:43 +08:00
inertial interial: fix SPDX License Identifier 2026-07-09 02:08:43 +02:00
interpreters interpreters: add Tcl support 2026-07-24 17:15:49 +08:00
logging apps: add missing module metadata for executable tools 2026-06-22 22:27:07 +08:00
lte lte/lapi: fix warnings 2026-07-09 13:57:49 +02:00
math apps: add missing module metadata for executable tools 2026-06-22 22:27:07 +08:00
mlearning [nxstyle] fix Relative file path 2025-02-21 16:29:13 -05:00
netutils netutils/rexecd: forward PRIORITY/STACKSIZE config in CMake build 2026-07-23 17:18:08 -03:00
nshlib !nshlib: Remove fixed login; require FSUTILS_PASSWD 2026-07-22 17:21:22 +08:00
platform apps: Replace O_RDOK with O_RDONLY after alias removal 2026-06-28 13:00:52 +02:00
sdr sdr: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
system system/nxstore: address review findings and fix hardware-found bugs. 2026-07-24 15:25:58 +05:30
tee tee/optee_client: Consolidate libteec and optee_supplicant 2025-10-30 21:46:56 +08:00
testing !fsutils/passwd: Replace TEA with PBKDF2-HMAC-SHA256 2026-07-22 17:21:22 +08:00
tools tools: format bitmap converter 2026-07-06 16:31:47 +08:00
videoutils apps: add missing module metadata for executable tools 2026-06-22 22:27:07 +08:00
wireless wireless/bluetooth/nimble: make transport ACL buffer count configurable 2026-07-15 08:40:55 +02:00
.asf.yaml github: master branch protection tune. 2025-06-24 22:19:00 +08:00
.codespell-ignore-lines codespell: ignore ANS error 2026-07-15 08:40:55 +02:00
.codespellrc apps/games/NXDoom: Style ignores 2026-06-30 15:22:55 -03:00
.gitignore system/syslogd: Initial implementation 2025-06-17 20:43:58 +08:00
Application.mk Application.mk:define application attribute in elf symbol 2026-07-21 05:47:25 -03:00
CMakeLists.txt inertial/madgwick: add CMake build support 2026-07-09 02:08:43 +02:00
config.nims apps: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
Directory.mk apps: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
LICENSE license: Fix typo in LICENSE file 2026-01-23 11:05:48 -03:00
Make.defs apps: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
Makefile apps: migrate to SPDX identifier 2024-12-30 18:02:50 +08:00
NOTICE Add DISCLAIMER, LICENSE and NOTICE files. 2020-03-07 16:14:29 -06:00
README.md README: Fix application directory wording. 2026-07-09 09:26:16 +08:00

Application Folder

Contents

  • General
  • Directory Location
  • Built-In Applications
  • NuttShell (NSH) Built-In Commands
  • Synchronous Built-In Commands
  • Application Configuration File
  • Example Built-In Application
  • Building NuttX with Board-Specific Pieces Outside the Source Tree

General

This folder provides various applications found in sub-directories. These applications are not inherently a part of NuttX but are provided to help you develop your own applications. The apps/ directory is a break away part of the configuration that you may choose to use or not.

Directory Location

The default application directory used by the NuttX build should be named apps/ (or apps-x.y.z/ where x.y.z is the NuttX version number). This apps/ directory should appear in the directory tree at the same level as the NuttX directory. Like:

 .
 |- nuttx
 |
 `- apps

If all of the above conditions are TRUE, then NuttX will be able to find the application directory. If your application directory has a different name or is located at a different position, then you will have to inform the NuttX build system of that location. There are several ways to do that:

  1. You can define CONFIG_APPS_DIR to be the full path to your application directory in the NuttX configuration file.
  2. You can provide the path to the application directory on the command line like: make APPDIR=<path> or make CONFIG_APPS_DIR=<path>
  3. When you configure NuttX using tools/configure.sh, you can provide that path to the application directory on the configuration command line like: ./configure.sh -a <app-dir> <board-name>:<config-name>

Built-In Applications

NuttX also supports applications that can be started using a name string. In this case, application entry points with their requirements are gathered together in two files:

  • builtin/builtin_proto.h Entry points, prototype function
  • builtin/builtin_list.h Application specific information and requirements

The build occurs in several phases as different build targets are executed: (1) context, (2) depend, and (3) default (all). Application information is collected during the make context build phase.

To execute an application function:

exec_builtin() is defined in the apps/include/builtin/builtin.h.

NuttShell (NSH) Built-In Commands

One use of builtin applications is to provide a way of invoking your custom application through the NuttShell (NSH) command line. NSH will support a seamless method invoking the applications, when the following option is enabled in the NuttX configuration file:

CONFIG_NSH_BUILTIN_APPS=y

Applications registered in the apps/builtin/builtin_list.h file will then be accessible from the NSH command line. If you type help at the NSH prompt, you will see a list of the registered commands.

Synchronous Built-In Commands

By default, built-in commands started from the NSH command line will run asynchronously with NSH. If you want to force NSH to execute commands then wait for the command to execute, you can enable that feature by adding the following to the NuttX configuration file:

CONFIG_SCHED_WAITPID=y

The configuration option enables support for the waitpid() RTOS interface. When that interface is enabled, NSH will use it to wait, sleeping until the built-in command executes to completion.

Of course, even with CONFIG_SCHED_WAITPID=y defined, specific commands can still be forced to run asynchronously by adding the ampersand (&) after the NSH command.

Application Configuration File

The NuttX configuration uses kconfig-frontends tools and the NuttX configuration file (.config) file. For example, the NuttX .config may have:

CONFIG_EXAMPLES_HELLO=y

This will select the apps/examples/hello in the following way:

  • The top-level make will include apps/examples/Make.defs
  • apps/examples/Make.defs will set CONFIGURED_APPS += $(APPDIR)/examples/hello like this:
  ifneq ($(CONFIG_EXAMPLES_HELLO),)
  CONFIGURED_APPS += $(APPDIR)/examples/hello
  endif

Example Built-In Application

An example application skeleton can be found under the examples/hello sub-directory. This example shows how a builtin application can be added to the project. One must:

  1. Create sub-directory as: progname

  2. In this directory there should be:

    • A Make.defs file that would be included by the apps/Makefile
    • A Kconfig file that would be used by the configuration tool (see the file kconfig-language.txt in the NuttX tools repository). This Kconfig file should be included by the apps/Kconfig file
    • A Makefile, and
    • The application source code.
  3. The application source code should provide the entry point:

    main()
    
  4. Set the requirements in the file: Makefile, specifically the lines:

    PROGNAME   = progname
    PRIORITY   = SCHED_PRIORITY_DEFAULT
    STACKSIZE  = 768
    ASRCS      = asm source file list as a.asm b.asm ...
    CSRCS      = C source file list as foo1.c foo2.c ..
    
  5. The Make.defs file should include a line like:

    ifneq ($(CONFIG_PROGNAME),)
    CONFIGURED_APPS += progname
    endif
    

Building NuttX with Board-Specific Pieces Outside the Source Tree

Q: Has anyone come up with a tidy way to build NuttX with board- specific pieces outside the source tree?

A: Here are three:

  1. There is a make target called make export. It will build NuttX, then bundle all of the header files, libraries, startup objects, and other build components into a .zip file. You can move that .zip file into any build environment you want. You can even build NuttX under a DOS CMD window.

    This make target is documented in the top level nuttx/README.txt.

  2. You can replace the entire apps/ directory. If there is nothing in the apps/ directory that you need, you can define CONFIG_APPS_DIR in your .config file so that it points to a different, custom application directory.

    You can copy any pieces that you like from the old apps/directory to your custom apps directory as necessary.

    This is documented in NuttX/boards/README.txt and NuttX Porting Guide online at https://cwiki.apache.org/confluence/display/NUTTX/Porting+Guide.

  3. If you like the random collection of stuff in the apps/ directory but just want to expand the existing components with your own, external sub-directory then there is an easy way to that too: You just create a symbolic link in the apps/ directory that redirects to your application sub-directory.

    In order to be incorporated into the build, the directory that you link under the apps/ directory should contain (1) a Makefile that supports the clean and distclean targets (see other Makefiles for examples), and (2) a tiny Make.defs file that simply adds the custom build directories to the variable CONFIGURED_APPS like:

    CONFIGURED_APPS += my_directory1 my_directory2
    

    The apps/Makefile will always automatically check for the existence of subdirectories containing a Makefile and a Make.defs file. The Makefile will be used only to support cleaning operations. The Make.defs file provides the set of directories to be built; these directories must also contain a Makefile. That Makefile must be able to build the sources and add the objects to the apps/libapps.a archive. (see other Makefiles for examples). It should support the all, install, context, and depend targets.

    apps/Makefile does not depend on any hardcoded lists of directories. Instead, it does a wildcard search to find all appropriate directories. This means that to install a new application, you simply have to copy the directory (or link it) into the apps/ directory. If the new directory includes a Makefile and Make.defs file, then it will automatically be included in the build.

    If the directory that you add also includes a Kconfig file, then it will automatically be included in the NuttX configuration system as well. apps/Makefile uses a tool at apps/tools/mkkconfig.sh that dynamically builds the apps/Kconfig file at pre-configuration time.

    You could, for example, create a script called install.sh that installs a custom application, configuration, and board specific directory:

    a) Copy MyBoard directory to boards/MyBoard. b) Add a symbolic link to MyApplication at apps/external. c) Configure NuttX, usually by:

    tools/configure.sh MyBoard:MyConfiguration
    

    Use of the name apps/external is suggested because that name is included in the .gitignore file and will save you some nuisance when working with GIT.

Export restrictions

This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.

The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.

The following provides more details on the included cryptographic software: https://tls.mbed.org/supported-ssl-ciphersuites. https://github.com/intel/tinycrypt