dc32-peppercon9-addon/firmware/user/src/flash.h
true 27cbc558ce initial commit of work-in-progress code
this code builds, but is fully untested, incomplete, and guaranteed to not work.
2024-08-03 03:21:08 -07:00

19 lines
293 B
C

/*
* flash.h
*
* Created on: Jul 29, 2024
* Author: true
*/
#ifndef USER_SRC_FLASH_H_
#define USER_SRC_FLASH_H_
int8_t flash_read(uint32_t *flash_addr, uint32_t *data, uint32_t len);
int8_t flash_write256(uint32_t *flash_addr, uint32_t *data);
#endif /* USER_SRC_FLASH_H_ */