Merge pull request #9256 from jeromecoutant/PR_FLASHEEPROM

STM32L0 & STM32L1: FLASH is EEPROM
pull/9290/head
Martin Kojtal 2019-01-08 15:06:50 +00:00 committed by GitHub
commit c27dabe765
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ uint8_t flash_get_erase_value(const flash_t *obj)
{
(void)obj;
return 0xFF;
return 0x0;
}
#endif

View File

@ -175,7 +175,7 @@ uint8_t flash_get_erase_value(const flash_t *obj)
{
(void)obj;
return 0xFF;
return 0x0;
}
#endif