From 3c4da90861ee01ac4aab5f5d1261fa6656a060f4 Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 15 Jan 2024 19:09:57 +0000 Subject: [PATCH] Code style fixes Automated fixes for code style. --- src/HAL/Include/nanoHAL_Persistent_Storage.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/HAL/Include/nanoHAL_Persistent_Storage.h b/src/HAL/Include/nanoHAL_Persistent_Storage.h index c42854dbd1..e744d41775 100644 --- a/src/HAL/Include/nanoHAL_Persistent_Storage.h +++ b/src/HAL/Include/nanoHAL_Persistent_Storage.h @@ -15,14 +15,16 @@ // driver letters and paths -typedef enum { +typedef enum +{ SD, USB, SPI, __STORAGE_TYPE_COUNT } storage_type_t; -typedef struct { +typedef struct +{ char drive_letter[1]; uint8_t drive_index; storage_type_t drive_type;