blob: a7705a8908bc53a2c2b9c39f084944b1096821a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __INT_CMD_I2C_WRITE_H__
#define __INT_CMD_I2C_WRITE_H__
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
#define d0d0cmd_i2c_write(in1, in2) u8cmd_i2c_writes((uint8)in1, (uint8)in2)
#define u80d0cmd_i2c_write(in1, in2) u8cmd_i2c_writes((uint8)in1, (uint8)in2)
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __INT_CMD_I2C_WRITE_H__ */
|