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