diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/flash/stm32x.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/flash/stm32x.h b/src/flash/stm32x.h index 51114667..60117627 100644 --- a/src/flash/stm32x.h +++ b/src/flash/stm32x.h @@ -25,16 +25,16 @@ #include "flash.h" -typedef struct stm32x_options_s +struct stm32x_options { uint16_t RDP; uint16_t user_options; uint16_t protection[4]; -} stm32x_options_t; +}; typedef struct stm32x_flash_bank_s { - stm32x_options_t option_bytes; + struct stm32x_options option_bytes; working_area_t *write_algorithm; int ppage_size; int probed; |