StepperII
Dual Axis Stepper Controller

CTimer.h

00001 /*
00002  * CTimer.h
00003  *
00004  *  Created on: Oct 11, 2009
00005  *      Author: kirk
00006  */
00007 
00008 #ifndef CTIMER_H_
00009 #define CTIMER_H_
00010 
00011 #include "CTask.h"
00012 
00013 class CTimer
00014 {
00015 private:
00016         unsigned int  count;                    
00017         CTask *pTask;                                   
00018 
00019 public:
00020         CTimer();
00021         char create(unsigned int);
00022         void update(void);
00023 };
00024 
00025 #endif /* CTIMER_H_ */
 All Classes Files Functions Variables Defines