This repository has been archived on 2025-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
#ifndef __EEPROM_H__
|
|
#define __EEPROM_H__
|
|
#include "lib.h"
|
|
|
|
extern void chip_eeprom_config_read(uint32_t read_addr, uint8_t *data, uint16_t length); ///< 读取数据
|
|
extern void chip_eeprom_config_write(uint32_t write_addr, uint8_t *data, uint16_t length); ///< 写入数据
|
|
#endif ///< __EEPROM_H__
|