mirror of
https://github.com/dimoniche/Moyka.git
synced 2026-01-30 18:03:31 +03:00
10 lines
227 B
C
10 lines
227 B
C
#ifndef __LPC23xx_IAP_H__
|
|
#define __LPC23xx_IAP_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint8_t flashrom_write(uint8_t *dst, const uint8_t *src, size_t size);
|
|
extern uint8_t flashrom_erase(uint8_t *addr);
|
|
|
|
#endif // __LPC23xx_IAP_H__
|