⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 masterwaitforintri2c2.c

📁 Mplab C30编译器
💻 C
字号:
#if defined(__PIC24F__)
#include <p24Fxxxx.h>
#endif
#include <i2c.h>

/***********************************************************************
Function Prototype : void MasterWaitForIntrI2C2(void)
 
Include            : i2c.h
 
Description        : This routine will wait for Master interrupt request 
                     and then clear interrupt Flag.
                      
Arguments          : None
 
Return Value       : None
 
Remarks            : It wait for Master interrupt request and then 
                     clear interrupt Flag.
************************************************************************/

#ifdef _I2C_V2_2

void MasterWaitForIntrI2C2(void)
{
   while(0 == IFS3bits.MI2C2IF);
   IFS3bits.MI2C2IF = 0;
}




#else
#warning "Does not build on this target"
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -