| 1234567891011121314151617181920 | /* * base.h * *  Created on: 2017Äê9ÔÂ13ÈÕ *      Author: eric */#ifndef __BASE_H_#define __BASE_H_#include "sys.h"#define RET_OK 0#define RET_ERROR 1typedef volatile unsigned long * Bit_Addr_t;#define SYSTICK_SCHEDULE_100MS static u32 _Sys_Schedule_100ms;\if (_Sys_Schedule_100ms == TimerSecond) {\   return;\}\#endif /* __BASE_H_ */
 |