From 5f6c746e49dee3567bdb122543d398a78a67dc5e Mon Sep 17 00:00:00 2001 From: cmcgcc <54688357+cmcgcc@users.noreply.github.com> Date: Sun, 17 May 2020 12:35:58 -0700 Subject: [PATCH] Add flash id component to IotFlashInfo struct (#2016) --- libraries/abstractions/common_io/include/iot_flash.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/abstractions/common_io/include/iot_flash.h b/libraries/abstractions/common_io/include/iot_flash.h index 18492e00441..e561a514a78 100644 --- a/libraries/abstractions/common_io/include/iot_flash.h +++ b/libraries/abstractions/common_io/include/iot_flash.h @@ -94,6 +94,7 @@ typedef struct IotFlashInfo * and if sub-sectors of 4k can be write protected then this may be set to 4K*/ uint8_t ucAsyncSupported; /*!< Provides a flag to indicate if background erase/program * is supported. User must check this before they can setup a callback and wait.*/ + uint32_t ulFlashID; /*!< flash chip id */ } IotFlashInfo_t; /**