📄 closeintcn.c
字号:
#if defined(__PIC24F__)
#include <p24Fxxxx.h>
#endif
#include <ports.h>
/****************************************************************************
Function Prototype : void CloseIntCN(void)
Include : ports.h
Description : This function disables the CN interrupt.
Arguments : None
Return Value : None
Remarks : This function disables the interrupt and
clears the corresponding Interrupt flag.
*******************************************************************************/
void CloseIntCN(void)
{
/* Disables CN interrupt*/
IEC1bits.CNIE = 0;
IFS1bits.CNIF = 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -