2021-10-20 16:13:11 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-03-22 00:40:12 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Major version number (X.x.x) */
|
2021-10-20 16:13:11 -04:00
|
|
|
#define ESP_IDF_VERSION_MAJOR 5
|
2019-03-22 00:40:12 -04:00
|
|
|
/** Minor version number (x.X.x) */
|
2022-08-03 13:24:20 -04:00
|
|
|
#define ESP_IDF_VERSION_MINOR 1
|
2019-03-22 00:40:12 -04:00
|
|
|
/** Patch version number (x.x.X) */
|
2024-02-25 22:09:16 -05:00
|
|
|
#define ESP_IDF_VERSION_PATCH 3
|
2019-03-22 00:40:12 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro to convert IDF version number into an integer
|
|
|
|
*
|
|
|
|
* To be used in comparisons, such as ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 0, 0)
|
|
|
|
*/
|
|
|
|
#define ESP_IDF_VERSION_VAL(major, minor, patch) ((major << 16) | (minor << 8) | (patch))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Current IDF version, as an integer
|
|
|
|
*
|
|
|
|
* To be used in comparisons, such as ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 0, 0)
|
|
|
|
*/
|
|
|
|
#define ESP_IDF_VERSION ESP_IDF_VERSION_VAL(ESP_IDF_VERSION_MAJOR, \
|
|
|
|
ESP_IDF_VERSION_MINOR, \
|
|
|
|
ESP_IDF_VERSION_PATCH)
|
|
|
|
|
2020-10-15 09:54:57 -04:00
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
|
2019-03-22 00:40:12 -04:00
|
|
|
/**
|
|
|
|
* Return full IDF version string, same as 'git describe' output.
|
|
|
|
*
|
|
|
|
* @note If you are printing the ESP-IDF version in a log file or other information,
|
|
|
|
* this function provides more information than using the numerical version macros.
|
|
|
|
* For example, numerical version macros don't differentiate between development,
|
|
|
|
* pre-release and release versions, but the output of this function does.
|
|
|
|
*
|
|
|
|
* @return constant string from IDF_VER
|
|
|
|
*/
|
|
|
|
const char* esp_get_idf_version(void);
|
|
|
|
|
2020-10-15 09:54:57 -04:00
|
|
|
#endif
|
|
|
|
|
2019-03-22 00:40:12 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|