mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
9 lines
133 B
C
9 lines
133 B
C
#ifndef FLASH_H_
|
|
#define FLASH_H_
|
|
|
|
#include <inttypes.h>
|
|
|
|
void flash_write_page(uint32_t page, uint8_t *buf);
|
|
|
|
#endif /* FLASH_H_ */
|