1
0
Fork 0

NVRAM refactor, phase 1. (#18969)

* Rename `eeprom_stm32` to `eeprom_legacy_emulated_flash`.

* Rename `flash_stm32` to `legacy_flash_ops`.

* Rename `eeprom_teensy` to `eeprom_kinetis_flexram`.
This commit is contained in:
Nick Brassel 2022-11-23 19:50:19 +11:00 committed by GitHub
parent bfdc761819
commit bebfdad795
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 34 additions and 34 deletions

View file

@ -17,7 +17,7 @@
*/
#include <hal.h>
#include "flash_stm32.h"
#include "legacy_flash_ops.h"
#if defined(STM32F1XX)
# define FLASH_SR_WRPERR FLASH_SR_WRPRTERR

View file

@ -24,7 +24,7 @@ extern "C" {
#include <stdint.h>
#ifdef FLASH_STM32_MOCKED
#ifdef LEGACY_FLASH_OPS_MOCKED
extern uint8_t FlashBuf[MOCK_FLASH_SIZE];
#endif