Minor chnages to EEPROM library to remove ASSERT warning. Also updated the example to call Serial.begin(115200) for non maple boards
This commit is contained in:
parent
a8553ff050
commit
e5f25ad6c3
|
@ -17,7 +17,9 @@ void setup()
|
||||||
{
|
{
|
||||||
// initialize the digital pin as an output:
|
// initialize the digital pin as an output:
|
||||||
pinMode(ledPin, OUTPUT);
|
pinMode(ledPin, OUTPUT);
|
||||||
|
Serial.begin(115200);
|
||||||
Serial.print(HELP_MSG);
|
Serial.print(HELP_MSG);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
//#include "libmaple.h"
|
//#include "libmaple.h"
|
||||||
//#include "util.h"
|
#include "libmaple/util.h"
|
||||||
#include "libmaple/flash.h"
|
#include "libmaple/flash.h"
|
||||||
#include "flash_stm32.h"
|
#include "flash_stm32.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue