Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.12 KB

File metadata and controls

65 lines (48 loc) · 1.12 KB

Development Environment

Overview

This guide explains how to set up a development environment for the NLS tracker device.

Required Tools

1. ESP-IDF

2. Python

  • Version: 3.8 or later
  • Required Packages: See requirements.txt

3. Code Editor

  • VS Code with ESP-IDF extension (recommended)
  • PlatformIO (alternative)

Setup Steps

1. Install ESP-IDF

git clone --recursive https://github.com/espressif/esp-idf.git
cd esp-idf
./install.sh
. ./export.sh

2. Clone Repository

git clone https://github.com/nonlineari/toplap-nls.git
cd toplap-nls/firmware

3. Configure Project

idf.py menuconfig

4. Build Project

idf.py build

5. Flash Device

idf.py flash

6. Monitor Output

idf.py monitor

Next Steps


Last Updated: 2025-02-02
Version: 1.0.0