摘要:
1 /* 2 * DS1302.h 3 * 4 * Created on: 2013-11-27 5 * Author: Allen 6 */ 7 8 #ifndef DS1302_H_ 9 #define DS1302_H_10 11 #include 12 #include "MyType.h"13 14 //时间结构体15 typedef struct16 {17 uchar year; //00-99,前面自己加入20,比如读出13为201318 uchar month;19 uchar date;20 uc... 阅读全文