Arduino_STM32/STM32F4
Vassilis Serasidis 2f4eaa7979 STM32F407 BKPSRAM Boundary address fix
Fix for the Backup RAM.

Example code:

...
#include <libmaple/bkp.h>
...

bkp_init();
bkp_enable_writes();
bkp_write(1, 0x1234); //Writes the value 0x1234 at Backup RAM address 1
bkp_disable_writes();
Serial.print(bkp_read(1)); //Print the value of the Backup RAM address 1
...
2018-06-22 19:49:05 +03:00
..
cores/maple STM32F407 BKPSRAM Boundary address fix 2018-06-22 19:49:05 +03:00
libraries Merge branch 'aster94-master' 2018-04-01 15:03:36 +10:00
system/libmaple replace all backslaches by slashes in include paths 2017-07-04 19:28:50 +02:00
variants Add partial support for a DFU bootloader for the F4 2017-09-03 10:51:08 +10:00
boards.txt Add partial support for a DFU bootloader for the F4 2017-09-03 10:51:08 +10:00
platform.txt Replace {build.path}/{archive_file} by {archive_file_path} 2018-01-09 09:18:36 +01:00