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