mirror of
https://github.com/andreili/katapult.git
synced 2025-08-24 03:44:06 +02:00
Allow the low-level board code to handle each flash page. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
10 lines
167 B
C
10 lines
167 B
C
#ifndef __STM32_FLASH_H
|
|
#define __STM32_FLASH_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int flash_write_block(uint32_t block_address, uint32_t *data);
|
|
int flash_complete(void);
|
|
|
|
#endif
|