23 lines
390 B
C
Executable File
23 lines
390 B
C
Executable File
#ifndef _OCMI2CMASTER_H_
|
|
#define _OCMI2CMASTER_H_
|
|
|
|
#define MAX_NUMBER_BYTES 128
|
|
|
|
typedef enum
|
|
{
|
|
LOG_DEBUG =0x00,
|
|
LOG_INFO,
|
|
LOG_WARN,
|
|
LOG_ERROR,
|
|
LOG_CRITICAL,
|
|
LOG_NOTRACE,
|
|
} LT_LogLevel;
|
|
|
|
void LTLog(unsigned char ucLvl, const char *fmt, ...);
|
|
|
|
|
|
extern int HDMI_WriteI2C_Byte(u8 addr,u8 data);
|
|
extern int HDMI_ReadI2C_Byte(u8 addr);
|
|
|
|
#endif
|