Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (372 Bytes)

1
#include "encoders.h"
2

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

    
8
int encoder_read(char encoder)
9
{
10
        UNIMPLEMENTED
11
}
12

    
13
int encoder_get_dx(char encoder)
14
{
15
        UNIMPLEMENTED
16
}
17

    
18
void encoder_rst_dx(char encoder)
19
{
20
        UNIMPLEMENTED
21
}
22

    
23
int encoder_get_tc(void)
24
{
25
        UNIMPLEMENTED
26
}
27

    
28
void encoder_rst_tc(void)
29
{
30
        UNIMPLEMENTED
31
}
32

    
33
void encoder_wait( int nReadings )
34
{
35
        UNIMPLEMENTED
36
}
37