Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (504 Bytes)

1
#include "analog.h"
2

    
3
#include "util.h"
4

    
5
void analog_init(int startConversion)
6
{
7
        UNIMPLEMENTED
8
}
9

    
10
void analog_start_loop(void)
11
{
12
        UNIMPLEMENTED
13
}
14

    
15
void analog_stop_loop(void)
16
{
17
        UNIMPLEMENTED
18
}
19

    
20
unsigned int analog8(int which)
21
{
22
        UNIMPLEMENTED
23
        return 0;
24
}
25

    
26
unsigned int analog10(int which)
27
{
28
        UNIMPLEMENTED
29
        return 0;
30
}
31

    
32
int wheel(void)
33
{
34
        UNIMPLEMENTED
35
        return 0;
36
}
37

    
38
unsigned int analog_get8(int which)
39
{
40
        UNIMPLEMENTED
41
        return 0;
42
}
43

    
44
unsigned int analog_get10(int which)
45
{
46
        UNIMPLEMENTED
47
        return 0;
48
}
49