From 24e728669378db6723f71c1e5067fe452b080e4f Mon Sep 17 00:00:00 2001 From: weyoui Date: Tue, 3 Jul 2018 11:58:34 +0900 Subject: [PATCH] bootloader: fix missing typedef on enum defintion (MINOR CHANGES) Closes https://github.com/espressif/esp-idf/pull/2140 --- components/bootloader_support/include/esp_image_format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bootloader_support/include/esp_image_format.h b/components/bootloader_support/include/esp_image_format.h index d2dcfd312c..6d332d810f 100644 --- a/components/bootloader_support/include/esp_image_format.h +++ b/components/bootloader_support/include/esp_image_format.h @@ -36,7 +36,7 @@ typedef enum { } esp_image_spi_mode_t; /* SPI flash clock frequency */ -enum { +typedef enum { ESP_IMAGE_SPI_SPEED_40M, ESP_IMAGE_SPI_SPEED_26M, ESP_IMAGE_SPI_SPEED_20M,