Nikolai Trushnikov / Flash
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers flashwrapper.h Source File

flashwrapper.h

00001 /*
00002  * flashwrapper.h
00003  *
00004  *  Created on: 25 дек. 2018 г.
00005  *      Author: spookee
00006  */
00007 
00008 #pragma once
00009 
00010 #include "stdint.h"
00011 //начальный адрес сектора 12 банка 2
00012 #define START_ADRESS 0x08100000
00013 
00014 uint32_t flashRead(uint32_t address);
00015 void flashWrite(uint32_t address, uint32_t *p_data, uint16_t size);
00016 
00017 
00018