17 lines
214 B
C
17 lines
214 B
C
#ifndef MYTIME_H
|
|
#define MYTIME_H
|
|
#include "stm32f10x.h"
|
|
|
|
|
|
typedef struct{
|
|
int year;
|
|
int month;
|
|
int day;
|
|
int weekday;
|
|
int hour;
|
|
int minute;
|
|
int second;
|
|
} time;
|
|
|
|
char* Get_Time(void);
|
|
#endif
|