mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-08 04:22:25 +00:00
101 lines
3.8 KiB
C
101 lines
3.8 KiB
C
/*
|
|
* Copyright (c) 2019 Tomoyuki Sakurai <y@trombik.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#if !defined(__ESP_IDF_LIB_HELPERS__H__)
|
|
#define __ESP_IDF_LIB_HELPERS__H__
|
|
|
|
/* XXX this header file does not need to include freertos/FreeRTOS.h.
|
|
* but without it, ESP8266 RTOS SDK does not include `sdkconfig.h` in correct
|
|
* order. as this header depends on sdkconfig.h, sdkconfig.h must be included
|
|
* first. however, the SDK includes this header first, then includes
|
|
* `sdkconfig.h` when freertos/FreeRTOS.h is not explicitly included. an
|
|
* evidence can be found in `build/${COMPONENT}/${COMPONENT}.d` in a failed
|
|
* build.
|
|
*/
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <esp_idf_version.h>
|
|
|
|
#if !defined(ESP_IDF_VERSION) || !defined(ESP_IDF_VERSION_VAL)
|
|
#error Unknown ESP-IDF/ESP8266 RTOS SDK version
|
|
#endif
|
|
|
|
/* Minimal supported version for ESP32, ESP32S2 */
|
|
#define HELPER_ESP32_MIN_VER ESP_IDF_VERSION_VAL(3, 3, 5)
|
|
/* Minimal supported version for ESP8266 */
|
|
#define HELPER_ESP8266_MIN_VER ESP_IDF_VERSION_VAL(3, 3, 0)
|
|
|
|
/* HELPER_TARGET_IS_ESP32
|
|
* 1 when the target is esp32
|
|
*/
|
|
#if defined(CONFIG_IDF_TARGET_ESP32) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32S2) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32S3) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32C2) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32C3) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32C5) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32C6) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32P4) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32C61) \
|
|
|| defined(CONFIG_IDF_TARGET_ESP32H2)
|
|
#define HELPER_TARGET_IS_ESP32 (1)
|
|
|
|
/* HELPER_TARGET_IS_ESP8266
|
|
* 1 when the target is esp8266
|
|
*/
|
|
#elif defined(CONFIG_IDF_TARGET_ESP8266)
|
|
#define HELPER_TARGET_IS_ESP8266 (1)
|
|
#else
|
|
#error BUG: cannot determine the target
|
|
#endif
|
|
|
|
#if HELPER_TARGET_IS_ESP32 && ESP_IDF_VERSION < HELPER_ESP32_MIN_VER
|
|
#error Unsupported ESP-IDF version. Please update!
|
|
#endif
|
|
|
|
#if HELPER_TARGET_IS_ESP8266 && ESP_IDF_VERSION < HELPER_ESP8266_MIN_VER
|
|
#error Unsupported ESP8266 RTOS SDK version. Please update!
|
|
#endif
|
|
|
|
/* HELPER_SPI_HOST_DEFAULT
|
|
*
|
|
* The default SPI_HOST for spi_host_device_t
|
|
*/
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
#define HELPER_SPI_HOST_DEFAULT HSPI_HOST
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
|
#define HELPER_SPI_HOST_DEFAULT SPI2_HOST
|
|
#elif CONFIG_IDF_TARGET_ESP32C2 || CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C5 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32C61
|
|
#define HELPER_SPI_HOST_DEFAULT SPI1_HOST
|
|
#elif CONFIG_IDF_TARGET_ESP32H2
|
|
#define HELPER_SPI_HOST_DEFAULT SPI1_HOST
|
|
#elif CONFIG_IDF_TARGET_ESP32P4
|
|
#define HELPER_SPI_HOST_DEFAULT SPI1_HOST
|
|
#endif
|
|
|
|
/* show the actual values for debugging */
|
|
#if DEBUG
|
|
#define VALUE_TO_STRING(x) #x
|
|
#define VALUE(x) VALUE_TO_STRING(x)
|
|
#define VAR_NAME_VALUE(var) #var "=" VALUE(var)
|
|
#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32C3))
|
|
#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32H2))
|
|
#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32S2))
|
|
#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP32))
|
|
#pragma message(VAR_NAME_VALUE(CONFIG_IDF_TARGET_ESP8266))
|
|
#pragma message(VAR_NAME_VALUE(ESP_IDF_VERSION_MAJOR))
|
|
#endif
|
|
|
|
#endif |