Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (305 Bytes)

1
#include "i2c.h"
2
#include "util.h"
3

    
4
int i2c_init(char addr, fun_mrecv_t master_recv, fun_srecv_t slave_recv, fun_send_t slave_send)
5
{
6
        UNIMPLEMENTED
7
        return -1;
8
}
9

    
10
int i2c_send(char dest, char* data, size_t bytes)
11
{
12
        UNIMPLEMENTED
13
        return -1;
14
}
15

    
16
int i2c_request(char dest)
17
{
18
        UNIMPLEMENTED
19
        return -1;
20
}
21