导航

2013年4月9日 #

GateWay程序分析05_WDT.h

摘要: 看门狗的使用. #ifndef WDT_H #define WDT_H #ifdef __cplusplus extern "C" { #endif #include "lpc12xx_libcfg.h" extern bool WdtStartMark; extern void WDTInit (void); ... 阅读全文

posted @ 2013-04-09 21:14 淅沥枫 阅读(314) 评论(0) 推荐(0) 编辑

GateWay程序分析04_Delay.h

摘要: 从头文件的名字就可以看出这个函数的主要作用是什么了,延时. #ifndef DELAY_H #define DELAY_H #ifdef __cplusplus extern "C" { #endif #include "lpc12xx_libcfg.h" extern __asm void SysCtlDelay(unsigned long ulCoun... 阅读全文

posted @ 2013-04-09 19:53 淅沥枫 阅读(592) 评论(0) 推荐(0) 编辑

GateWay程序分析03_timer.h

摘要: 同样的,先看看头文件的具体内容,然后再来做简短的分析: #ifndef TIMER_H #define TIMER_H #ifdef __cplusplus extern "C" { #endif #include "lpc12xx_libcfg.h" #define START_TMR32B0() TIM32_Cmd(LPC_TMR3... 阅读全文

posted @ 2013-04-09 19:50 淅沥枫 阅读(370) 评论(0) 推荐(0) 编辑

GateWay程序分析02_IAP_FLASH.H

摘要: 先看看这个函数,然后看这个函数具体是干嘛的. #ifndef IAP_FLASH_H #define IAP_FLASH_H #ifdef __cplusplus extern "C" { #endif #include "lpc12xx_libcfg.h" #include "phoneNumber.h" #include "ZigBee... 阅读全文

posted @ 2013-04-09 19:48 淅沥枫 阅读(330) 评论(0) 推荐(0) 编辑

GateWay程序分析01_主程序分析

摘要: 1 /**************************************************************************×** 2 * LightGateway 3 * @file 4 * @brief 5 * @version 1.0 6 * @date... 阅读全文

posted @ 2013-04-09 19:47 淅沥枫 阅读(336) 评论(0) 推荐(0) 编辑