You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
254 B
8 lines
254 B
#pragma once
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
namespace iflytop {
|
|
void zsimple_flash_init(uint32_t sector_num);
|
|
void zsimple_flash_read(uint8_t* data, size_t len);
|
|
void zsimple_flash_write(const uint8_t* data, size_t len);
|
|
} // namespace iflytop
|