00001 /* 00002 * systick.h 00003 * 00004 * Created on: 2011/08/11 00005 * Author: atsu 00006 */ 00007 00008 #ifndef SYSTICK_H_ 00009 #define SYSTICK_H_ 00010 00011 /**************************************************************************/ 00036 #include "LPC11xx.h" 00037 #include "system_LPC11xx.h" 00038 00039 #ifdef __cplusplus 00040 extern "C" { 00041 #endif 00042 00043 void delay (unsigned long dlyTicks); 00044 unsigned long millis(void); 00045 //low level 00046 void SysTick_Handler(void); 00047 void setup_systick (void); 00048 00049 #endif /* SYSTICK_H_ */ 00050 00051 #ifdef __cplusplus 00052 } 00053 #endif