Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (449 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
}
24

    
25
unsigned int analog10(int which)
26
{
27
        UNIMPLEMENTED
28
}
29

    
30
int wheel(void)
31
{
32
        UNIMPLEMENTED
33
}
34

    
35
unsigned int analog_get8(int which)
36
{
37
        UNIMPLEMENTED
38
}
39

    
40
unsigned int analog_get10(int which)
41
{
42
        UNIMPLEMENTED
43
}
44