refactoring

This commit is contained in:
hg
2013-01-29 12:39:36 +01:00
parent 6970336f53
commit 314c6eba8d
10 changed files with 677 additions and 365 deletions

18
src/stepper.h Normal file
View File

@ -0,0 +1,18 @@
#ifndef STEPPER_H_
#define STEPPER_H_
#include <stdint.h>
#include "main.h"
#include "clock.h"
#define STEPS_PER_MINUTE 3
#define STEPS_PER_HOUR 7
void stepperInit();
void stepperEnable();
void stepperEngine();
#endif /* STEPPER_H_ */