blob: 6a57222bd937041aa0058a30ef50a28be7023461 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __CMD_I2C_WRITE_H__
#define __CMD_I2C_WRITE_H__
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
void u8cmd_i2c_writes(uint8 address, uint8 data);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __CMD_I2C_WRITE_H__ */
|