Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.52 KB

use_with_idf.md

File metadata and controls

44 lines (28 loc) · 1.52 KB

Using with ESP-IDF

Table of Contents

SDK & Dependencies

Before using this library, please ensure you have installed the SDK that meets the following version requirements:

SDK Version Required
esp-idf >= 5.1

Note

Adding to Project

esp-boost has been uploaded to the Espressif Component Registry. You can add it to your project in the following ways:

  1. Using Command Line

    Run the following command in your project directory:

    idf.py add-dependency "espressif/esp-boost==0.1.*"
  2. Modifying Configuration File

    Create or modify the idf_component.yml file in your project directory:

    dependencies:
      espressif/esp-boost: "0.1.*"

For detailed information, please refer to Espressif Documentation - IDF Component Manager.