porting: add missing esp_timer.h include

porting/npl/freertos/include/nimble/npl_freertos.h uses the
esp_timer_handle_t type without including esp_timer.h. Previously this
used to work because esp_timer.h was included by FreeRTOS headers.
This transitive include will be removed in IDF v5.0. Add an explicit
include to fix this.
This commit is contained in:
Ivan Grokhotkov
2024-02-14 16:58:49 +05:30
committed by Abhinav Kudnar
parent cc618abc5a
commit b45540a599
@@ -28,6 +28,7 @@
#include "freertos/semphr.h"
#include "freertos/task.h"
#include "freertos/timers.h"
#include "esp_timer.h"
#ifdef __cplusplus
extern "C" {