Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / motors.c @ 942

History | View | Annotate | Download (247 Bytes)

1
#include "motor.h"
2
#include "util.h"
3

    
4
void motors_init(void)
5
{
6
        UNIMPLEMENTED
7
}
8

    
9
void motor1_set(int direction, int speed)
10
{
11
        UNIMPLEMENTED
12
}
13

    
14
void motor2_set(int direction, int speed)
15
{
16
        UNIMPLEMENTED
17
}
18

    
19
void motors_off(void)
20
{
21
        UNIMPLEMENTED
22
}
23