mirror of
https://github.com/andreili/katapult.git
synced 2025-08-24 03:44:06 +02:00
10 lines
227 B
C
10 lines
227 B
C
#ifndef __STM32_FLASH_H
|
|
#define __STM32_FLASH_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void flash_complete(void);
|
|
void flash_write_page(uint16_t page_index, uint16_t *data);
|
|
void flash_read_block(uint16_t block_index, uint32_t *buffer);
|
|
|
|
#endif |