diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-30 16:01:54 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-30 16:01:54 -0500 |
commit | 31912e28d5311a0e8585dc36e2c01cdd0e3315ca (patch) | |
tree | e7e03c28fee79ce9c27477701e2d7b4fda98c22b /src/auto.c | |
parent | 3cba814333829daa431f663cf278315f56b47515 (diff) |
libZEPHYR began
Diffstat (limited to 'src/auto.c')
-rw-r--r-- | src/auto.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,16 +1,16 @@ #include <main.h>
-#define TARGET_SPEED 65
+/*#define TARGET_SPEED 65
static unsigned int time;
void autoDelay(unsigned int ms){
delay(ms);
time-=ms;
-}
+}*/
void autonomous(){
- static char speed = 0;
+ /*static char speed = 0;
time = 15000;
@@ -36,6 +36,6 @@ void autonomous(){ //while(1);
delay(time);
- motorStopAll();
+ motorStopAll();*/
}
|