📄 datardyi2c1.c
字号:
/************************************************************************
* Function Name: DataRdyI2C1
* Description: This routine provides the status whether the receive
* buffer is full by returning the RBF bit.
* Parameters: void
* Return Value: RBF bit status
*************************************************************************/
#include "i2c.h"
#if defined(_MI2C1IF)
char DataRdyI2C1(void)
{
return I2C1STATbits.RBF;
}
#else
#warning "Does not build on this target"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -