1 Star 5 Fork 0

ischen.x/PCF8563_driver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PCF8563.h 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
ischen.x 提交于 2024-06-13 13:59 . add file pcf8563.c pcf8563.h
#ifndef __PCF8563_H
#define __PCF8563_H
#include <stdint.h>
#include <time.h>
#define PCF8563_DEBUG 0
/* PCF8563 8位IIC地址 */
#define PCF8563_IIC_ADDR 0x51<<1
typedef struct _pcf8563_reg{
uint8_t Control_status_1;
uint8_t Control_status_2;
uint8_t VL_seconds;
uint8_t Minutes;
uint8_t Hours;
uint8_t Days;
uint8_t Weekdays;
uint8_t Century_mounths;
uint8_t Years;
}pcf8563_reg_type;
int pcf8563_set_time(struct tm *time_struct);
int pcf8563_get_time(struct tm *time_struct);
#if PCF8563_DEBUG
int pcf8563_get_reg(pcf8563_reg_type *pdata);
int pcf8563_set_reg(pcf8563_reg_type *pdata);
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ischen-x/pcf8563_driver.git
git@gitee.com:ischen-x/pcf8563_driver.git
ischen-x
pcf8563_driver
PCF8563_driver
master

搜索帮助