Add missing header file for IDF 5.0

This commit is contained in:
Ivan Grokhotkov 2022-03-21 12:33:10 +01:00
parent bab7163b8e
commit 0a8a503d93
No known key found for this signature in database
GPG Key ID: 1E050E141B280628
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
#include "esp_idf_version.h"
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0)
#include "esp_chip_info.h"
#endif
#include "RustApi.h"