Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (410 Bytes)

1
#include "dio.h"
2

    
3
int digital_input(int port)
4
{
5
        UNIMPLEMENTED
6
}
7

    
8
void digital_output(int port, int val)
9
{
10
        UNIMPLEMENTED
11
}
12

    
13
void digital_pull_up(int port)
14
{
15
        UNIMPLEMENTED
16
}
17

    
18
int button1_read(void)
19
{
20
        UNIMPLEMENTED
21
}
22

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

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

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

    
38
int button2_click(void)
39
{
40

    
41
}
42

    
43
void button2_wait(void)
44
{
45

    
46
}
47