Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (230 Bytes)

1
#include "motors.h"
2

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

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

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

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