diff --git a/include/libopencm3/stm32/common/flash_common_f234.h b/include/libopencm3/stm32/common/flash_common_f234.h index 50390c38..e1bb37d3 100644 --- a/include/libopencm3/stm32/common/flash_common_f234.h +++ b/include/libopencm3/stm32/common/flash_common_f234.h @@ -75,7 +75,6 @@ BEGIN_DECLS -void flash_clear_pgperr_flag(void); void flash_clear_status_flags(void); void flash_wait_for_last_operation(void); diff --git a/include/libopencm3/stm32/common/flash_common_f24.h b/include/libopencm3/stm32/common/flash_common_f24.h index 647f8413..706774b0 100644 --- a/include/libopencm3/stm32/common/flash_common_f24.h +++ b/include/libopencm3/stm32/common/flash_common_f24.h @@ -114,6 +114,7 @@ BEGIN_DECLS void flash_lock_option_bytes(void); void flash_clear_pgserr_flag(void); +void flash_clear_pgperr_flag(void); void flash_clear_wrperr_flag(void); void flash_clear_pgaerr_flag(void); void flash_erase_all_sectors(uint32_t program_size); diff --git a/include/libopencm3/stm32/f3/flash.h b/include/libopencm3/stm32/f3/flash.h index d73d215a..d66326da 100644 --- a/include/libopencm3/stm32/f3/flash.h +++ b/include/libopencm3/stm32/f3/flash.h @@ -54,7 +54,7 @@ #define FLASH_SR_BSY (1 << 0) #define FLASH_SR_ERLYBSY (1 << 1) -#define FLASH_SR_PGPERR (1 << 2) +#define FLASH_SR_PGERR (1 << 2) #define FLASH_SR_WRPRTERR (1 << 4) #define FLASH_SR_EOP (1 << 5) @@ -78,6 +78,7 @@ BEGIN_DECLS +void flash_clear_pgerr_flag(void); END_DECLS diff --git a/lib/stm32/common/flash_common_f234.c b/lib/stm32/common/flash_common_f234.c index 3f111444..d12baa29 100644 --- a/lib/stm32/common/flash_common_f234.c +++ b/lib/stm32/common/flash_common_f234.c @@ -26,16 +26,6 @@ #include -/*---------------------------------------------------------------------------*/ -/** @brief Clear the Programming Error Status Flag - -*/ - -void flash_clear_pgperr_flag(void) -{ - FLASH_SR |= FLASH_SR_PGPERR; -} - /*---------------------------------------------------------------------------*/ /** @brief Wait until Last Operation has Ended diff --git a/lib/stm32/common/flash_common_f24.c b/lib/stm32/common/flash_common_f24.c index 096409c7..366c9e74 100644 --- a/lib/stm32/common/flash_common_f24.c +++ b/lib/stm32/common/flash_common_f24.c @@ -62,6 +62,13 @@ void flash_clear_pgaerr_flag(void) FLASH_SR |= FLASH_SR_PGAERR; } +/** Clear programming parallelism error flag + */ +void flash_clear_pgperr_flag(void) +{ + FLASH_SR |= FLASH_SR_PGPERR; +} + /*---------------------------------------------------------------------------*/ /** @brief Clear the Write Protect Error Flag diff --git a/lib/stm32/f3/flash.c b/lib/stm32/f3/flash.c index 16fb8aac..f8aba91b 100644 --- a/lib/stm32/f3/flash.c +++ b/lib/stm32/f3/flash.c @@ -46,6 +46,11 @@ #include +void flash_clear_pgerr_flag(void) +{ + FLASH_SR |= FLASH_SR_PGERR; +} + /*---------------------------------------------------------------------------*/ /** @brief Clear All Status Flags @@ -54,7 +59,7 @@ Clears program error, end of operation, busy flags. void flash_clear_status_flags(void) { - flash_clear_pgperr_flag(); + flash_clear_pgerr_flag(); flash_clear_eop_flag(); }