From 58a223b4221bbfa84afba18b34562e7ffeb258cb Mon Sep 17 00:00:00 2001 From: Michael Zill Date: Sun, 1 Jan 2023 18:16:39 +0100 Subject: [PATCH] align FirmwareInfo with esp_app_desc_t --- src/ota.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ota.rs b/src/ota.rs index 7d07c10..1b35935 100644 --- a/src/ota.rs +++ b/src/ota.rs @@ -17,9 +17,9 @@ pub struct Slot { #[cfg_attr(feature = "defmt", derive(defmt::Format))] #[cfg_attr(feature = "use_serde", derive(Serialize, Deserialize))] pub struct FirmwareInfo { - pub version: heapless::String<24>, - pub released: heapless::String<24>, - pub description: Option>, + pub version: heapless::String<32>, + pub released: heapless::String<32>, + pub description: Option>, pub signature: Option>, pub download_id: Option>, }