bsp_flash.h
1 KB
/**
******************************************************************************
* @file bsp_flash.h
* @version V1.0
* @date 2018-06-18
* @brief bsp_flash.c的头文件
*
* @company 深圳炜世科技有限公司
* @information WIZnet W5100s官方代理商,全程技术支持,价格优势大!
* @website www.wisioe.com
* @forum www.w5100s.com
* @qqGroup 579842114
******************************************************************************
*/
#ifndef _BSP_FLASH_H
#define _BSP_FLASH_H
#include "types.h"
//#include "stm32f10x_flash.h"
//#include "stm32f2xx_flash.h"
#include "stm32f4xx_flash.h"
void WriteFlashData(uint32_t WriteAddress, uint8_t data[], uint32_t num);
int ReadFlashNBtye(uint32_t ReadAddress, uint8_t *ReadBuf, int32_t ReadNum);
#endif /* _MCU_FLASH_H_ */