Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.46 KB

README.md

File metadata and controls

56 lines (35 loc) · 1.46 KB

LoRaWAN Test App for Apache NuttX OS

Read the articles...

This repo depends on...

Install App

To add this repo to your NuttX project...

cd nuttx/apps/examples
git submodule add https://github.com/lupyuen/lorawan_test

Then update the NuttX Build Config...

## TODO: Change this to the path of our "incubator-nuttx" folder
cd nuttx/nuttx

## Preserve the Build Config
cp .config ../config

## Erase the Build Config and Kconfig files
make distclean

## For BL602: Configure the build for BL602
./tools/configure.sh bl602evb:nsh

## For ESP32: Configure the build for ESP32.
## TODO: Change "esp32-devkitc" to our ESP32 board.
./tools/configure.sh esp32-devkitc:nsh

## Restore the Build Config
cp ../config .config

## Edit the Build Config
make menuconfig 

In menuconfig, enable the LoRaWAN Test App under "Application Configuration" → "Examples".

Based on...