revision.c 475 B

12345678910111213141516
  1. /*
  2. * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include "sdkconfig.h"
  7. #include "esp_assert.h"
  8. /*
  9. Source used to store ESP chip revision and ESP-IDF minimum supported revision in the future.
  10. Currently only used to hold static assert to check that the configured minimum and maximum supported chip revisions of
  11. ESP-IDF are valid.
  12. */
  13. ESP_STATIC_ASSERT(CONFIG_ESP_REV_MIN_FULL <= CONFIG_ESP_REV_MAX_FULL);