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

2 years ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdlib.h>
  4. namespace iflytop {
  5. void zsimple_flash_init(uint32_t sector_num);
  6. void zsimple_flash_read(uint8_t* data, size_t len);
  7. void zsimple_flash_write(const uint8_t* data, size_t len);
  8. } // namespace iflytop