Merge pull request #13985 from tpruvot/stm32_sdeeprom

STM32F1: fix sdcard filename conversion
This commit is contained in:
Bob Kuhn 2019-05-13 01:48:58 -05:00 committed by GitHub
commit 211563e533
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ static char HAL_STM32F1_eeprom_content[HAL_STM32F1_EEPROM_SIZE];
#include "../../sd/cardreader.h"
static const char eeprom_filename[] = "eeprom.dat";
static char eeprom_filename[] = "eeprom.dat";
bool PersistentStore::access_start() {
if (!card.isDetected()) return false;