You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
247 B
C
13 lines
247 B
C
3 weeks ago
|
#ifndef __IOI2C_SLV_H__
|
||
|
#define __IOI2C_SLV_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void IOI2C_SLV_Init(void);
|
||
|
|
||
|
uint32_t IOI2C_SLV_RxNotEmpty(void);
|
||
|
char IOI2C_SLV_FetchByte(void);
|
||
|
void IOI2C_SLV_FetchBytes(char buff[], uint32_t len);
|
||
|
|
||
|
#endif //__IOI2C_SLV_H__
|