123456789101112131415 |
- #ifndef __MYFLASHDATA_H__
- #define __MYFLASHDATA_H__
- #include <stdint.h>
- #include <string.h>
- /**
- * 参数本地保存地址
- * 预留4Kflash空间,芯片总的flash空间256K(0X08040000)
- *
- */
- #define FLASH_APP1_PARAMS_ADDR 0X0803e000
- void myFlash_write(uint8_t *pBuffer,uint16_t writeLen);
- void myFlash_read(uint8_t *pBuffer,uint16_t readLen);
- #endif
|