ds1302._h

来自「mega128+VS1003做的mp3的程序 可以用WINAVR编译」· _H 代码 · 共 26 行

_H
26
字号
#ifndef DS1302_H
#define DS1302_H

#ifndef 	uchar
#define    uchar   unsigned char
#endif

#ifndef 	uint
#define    uint    unsigned int
#endif

#ifndef 	ulong
#define    ulong   unsigned long
#endif
//----------------------------------------------------------------------------------//
typedef struct time_now{ 		//当前时间的数据结构
        uchar sec;   	/*秒*/
		uchar min;   	/*分*/
		uchar hour;		/*时*/
		uchar date;     /*日期*/
		uchar month; 	/*月*/
		uchar week;  	/*周*/
		uchar year;  	/*年*/
};
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?