15 lines
178 B
C
15 lines
178 B
C
|
|
||
|
#ifndef __SCCB
|
||
|
#define __SCCB
|
||
|
#include "src/i2c_ee.h"
|
||
|
|
||
|
|
||
|
void SCCB_SDA_IN();
|
||
|
void SCCB_SDA_OUT();
|
||
|
void SCCB_Init(void);
|
||
|
void SCCB_No_Ack(void);
|
||
|
u8 SCCB_RD_Reg(u8 reg);
|
||
|
|
||
|
#endif
|
||
|
|