Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 844 Bytes

File metadata and controls

62 lines (44 loc) · 844 Bytes

First Build

Overview

This guide walks you through building your first project with the NLS tracker device.

Prerequisites

  • Development environment set up
  • Device connected via USB
  • Basic C/C++ knowledge

Build Steps

1. Create Project

mkdir my-tracker-project
cd my-tracker-project
cp -r ../firmware/template/* .

2. Configure Project

idf.py menuconfig

3. Build

idf.py build

4. Flash

idf.py flash

5. Monitor

idf.py monitor

Example Code

#include "esp_log.h"

static const char *TAG = "my_project";

void app_main(void) {
    ESP_LOGI(TAG, "Hello from NLS Tracker!");
}

Next Steps


Last Updated: 2025-02-02
Version: 1.0.0