huyongji1.1-system/App/EEPROM/EEPROM.h

15 lines
389 B
C
Raw Normal View History

2025-04-16 09:58:09 +08:00
#ifndef EEPROM_H
#define EEPROM_H
#include "main.h"
#include "i2c.h"
#define ADDR 0xA0
void Inf_AT24C02_Init(void);
void Inf_AT24C02_WriteByte(uint8_t innerAddr, uint8_t byte);
uint8_t Inf_AT24C02_ReadByte(uint8_t innerAddr);
void Inf_AT24C02_WriteBytes(uint8_t innerAddr, uint8_t *bytes, uint8_t len);
void Inf_AT24C02_ReadBytes(uint8_t innerAddr, uint8_t *bytes, uint8_t len);
#endif