Update to new build system.
[clinton/Smoothieware.git] / mbed / src / capi / i2c_api.h
1 /* mbed Microcontroller Library
2 * Copyright (c) 2006-2013 ARM Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 #ifndef MBED_I2C_API_H
17 #define MBED_I2C_API_H
18
19 #include "device.h"
20
21 #if DEVICE_I2C
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 typedef struct i2c_s i2c_t;
28
29 void i2c_init (i2c_t *obj, PinName sda, PinName scl);
30 void i2c_frequency (i2c_t *obj, int hz);
31 int i2c_start (i2c_t *obj);
32 void i2c_stop (i2c_t *obj);
33 int i2c_read (i2c_t *obj, int address, char *data, int length, int stop);
34 int i2c_write (i2c_t *obj, int address, const char *data, int length, int stop);
35 void i2c_reset (i2c_t *obj);
36 int i2c_byte_read (i2c_t *obj, int last);
37 int i2c_byte_write (i2c_t *obj, int data);
38
39 #if DEVICE_I2CSLAVE
40 void i2c_slave_mode (i2c_t *obj, int enable_slave);
41 int i2c_slave_receive(i2c_t *obj);
42 int i2c_slave_read (i2c_t *obj, char *data, int length);
43 int i2c_slave_write (i2c_t *obj, const char *data, int length);
44 void i2c_slave_address(i2c_t *obj, int idx, uint32_t address, uint32_t mask);
45 #endif
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #endif
52
53 #endif