Skip to content

Посібник з портування NuttX

Для портування PX4 на NuttX на новий апаратний пристрій, цей апаратний пристрій повинен бути підтриманий NuttX. The NuttX project maintains an excellent porting guide for porting NuttX to a new computing platform.

The following guide assumes you are using an already supported hardware target or have ported NuttX (including the PX4 base layer) already.

The configuration files for all boards, including linker scripts and other required settings, are located under /boards in a vendor- and board-specific directory (i.e. boards/VENDOR/MODEL/).

The following example uses FMUv5 as it is a recent reference configuration for NuttX based flight controllers:

Налаштування меню NuttX Menuconfig

To modify the NuttX OS configuration, you can use menuconfig using the PX4 shortcuts:

sh
make px4_fmu-v5_default menuconfig
make px4_fmu-v5_default qconfig

For fresh installs of PX4 onto Ubuntu using ubuntu.sh you will also need to install kconfig tools from NuttX tools.

INFO

The following steps are not required if using the px4-dev-nuttx docker container or have installed to macOS using our normal instructions (as these includekconfig-mconf).

Виконайте наступні команди з будь-якого каталогу:

sh
git clone https://bitbucket.org/nuttx/tools.git
cd tools/kconfig-frontends
sudo apt install gperf
./configure --enable-mconf --disable-nconf --disable-gconf --enable-qconf --prefix=/usr
make
sudo make install

The --prefix=/usr determines the specific installation location (which must be in the PATH environment variable). The --enable-mconf and --enable-qconf options will enable the menuconfig and qconfig options respectively.

To run qconfig you may need to install additional Qt dependencies.

Завантажувач

Спочатку вам знадобиться завантажувач, який залежить від цільового обладнання:

Кроки портування прошивки

  1. Make sure you have a working development setup and installed the NuttX `menuconfig`` tool (see above).

  2. Завантажте вихідний код і переконайтеся, що ви можете зібрати існуючу ціль:

    sh
    git clone --recursive https://github.com/PX4/PX4-Autopilot.git
    cd PX4-Autopilot
    make px4_fmu-v5
  3. Знаходьте існуючу ціль, яка використовує той самий (або тісно пов'язаний) тип ЦП, і скопіюйте її. Наприклад для STM32F7:

    sh
    mkdir boards/manufacturer
    cp -r boards/px4/fmu-v5 boards/manufacturer/my-target-v1

    Change manufacturer to the manufacturer name and my-target-v1 to your board name.

Next you need to go through all files under boards/manufacturer/my-target-v1 and update them according to your board.

  1. firmware.prototype: update the board ID and name
  2. default.px4board: update the VENDOR and MODEL to match the directory names (my-target-v1). Налаштування послідовних портів.
  3. Configure NuttX (defconfig) via make manufacturer_my-target-v1 menuconfig: Adjust the CPU and chip, configure the peripherals (UART's, SPI, I2C, ADC).
  4. nuttx-config/include/board.h: Configure the NuttX pins. Для всіх зовнішніх пристроїв з кількома варіантами контактів, NuttX повинен знати контакт. They are defined in the chip-specific pinmap header file, for example stm32f74xx75xx_pinmap.h.
  5. src: go through all files under src and update them as needed, in particular board_config.h.
  6. init/rc.board_sensors: start the sensors that are attached to the board.