删除了doc文件夹下的论文,因为其中有些不符合实际;

完善了debug和release这两种工程配置;
添加了之前头文件中遗漏的防止重复编译的预编译器指令。
This commit is contained in:
forbelief 2016-06-15 10:50:08 +08:00
parent bd1902939a
commit 90351402d8
12 changed files with 3806 additions and 1791 deletions

View file

@ -1,15 +1,19 @@
/*
* plan_handle.h -
*/
void plan_handle_init(void);
void plan_handle(void);
void key_func(void);
/*
* plan_handle.h -
*/
#ifndef PLAN_HANDLE_H
#define PLAN_HANDLE_H
void plan_handle_init(void);
void plan_handle(void);
void key_func(void);
#endif /* PLAN_HANDLE_H */

View file

@ -1,9 +1,19 @@
/*
* pm_init.h -
*/
/*
* pm_init() -
*/
void pm_init(void);
/*
* pm_init.h -
*/
#ifndef PM_INIT_H
#define PM_INIT_H
/*
* pm_init() -
*/
void pm_init(void);
#endif /* PM_INIT_H */

View file

@ -2,6 +2,10 @@
* time.h -
*/
#ifndef TIME_H
#define TIME_H
#include <stdint.h>
@ -32,3 +36,6 @@ void maintain_system_time(void);
calendar_info get_system_time(void);
uint32_t calendar_to_sec(calendar_info *cal);
calendar_info sec_to_calendar(uint32_t sec);
#endif /* TIME_H */

View file

@ -4,6 +4,10 @@
* tft和plan_handle模块
*/
#ifndef TFT_PLAN_INTERNAL_H
#define TFT_PLAN_INTERNAL_H
#include "include/pm_time.h"
/*
@ -46,3 +50,6 @@ extern kv_pair kvp_obj_set[][PLAN_DATA_NUM];
void tft_to_plan_input(uint8_t objn);
#endif /* TFT_PLAN_INTERNAL_H */