mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
16 lines
401 B
C
16 lines
401 B
C
#ifndef _RTL837X_FLASH_H_
|
|
#define _RTL837X_FLASH_H_
|
|
|
|
#include <stdint.h>
|
|
uint8_t flash_read_status(void);
|
|
void flash_init(void);
|
|
void flash_init_dio(void);
|
|
void flash_read_uid(void);
|
|
void flash_write_enable(void);
|
|
void flash_dump(uint32_t addr, uint8_t len);
|
|
void flash_dump_dio(uint32_t addr, uint8_t len);
|
|
void flash_read_jedecid(void);
|
|
void flash_read_security(uint32_t addr, uint8_t len);
|
|
|
|
#endif
|