# NuttX configuration

## Install Kconfig frontends

NuttX uses a similar configuration system as the Linux kernel. There are Kconfig files that define the different options and you can generate a configuration file that can be used by the build system with a Kconfig frontend.

NuttX provide their own fork/back-up of the Kconfig-frontends, to make sure that they always have access to a compatible version. It is still hosted on their old BitBucket repository.

{% hint style="success" %}
In Ubuntu 20.04 it is possible to directly install the kconfig-frontends package from the package repositories. You only need to run `apt install kconfig-frontends`.&#x20;

You can then skip most of the instructions below.
{% endhint %}

First, make sure you have gperf installed:

```bash
sudo apt install gperf
```

Then download the source code by cloning the NuttX Tools repository from BitBucket:

```bash
git clone https://bitbucket.org/nuttx/tools.git
```

Change the working directory to the kconfig-frontends folder:

```bash
cd tools/kconfig-frontends
```

Configure the build to include (at least) the menuconfig and qconfig tools. The Kconfig frontends will be installed into the /usr folder.&#x20;

```bash
./configure --enable-mconf --enable-qconf --prefix=/usr
```

Now build the tools according to the configuration that we just created:

```
make
```

And finally install the Kconfig-frontends that we just build from source:

```
sudo make install
```

Once you have a "default" configuration in place (we will get to that in a second), you can edit the configuration with `make menuconfig` or `make qconfig`. Both tools have their pros and cons, just give them a try and see which one you like the most!

## Start with a canned configuration

Make sure you are inside the "nuttx" folder:

```
cd ~/src/apache-nuttx/nuttx
```

Then use the configure script to select the "nshdebug" configuration for the "rddrone-uavcan146" board:

```
./tools/configure.sh rddrone-uavcan146:nshdebug
```

Make sure to first run `make distclean` if you still have another active configuration.

## Configuration

Menuconfig is the "default" tool to configure the NuttX build. Once you have a board configuration selected (see above) you can edit the configuration with:

```
make menuconfig
```

You can also use qconfig, which shows the configuration as a nested list instead of different menus. This might make it a bit easier to navigate through the many options that are available:

```
make qconfig
```

Menuconfig and qconfig are easy to use tools, but NuttX is very configurable and you can easily got lost in the hundreds of menus and options that it provides. Take your time to explore the options that NuttX has to offer, but don't try to enable many options at once. Just select a few, build the code and give it a try on the hardware itself.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nxp.gitbook.io/ucans32k1/apache-nuttx/nuttx-configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
