ismclr.c
来自「Mplab C30编译器」· C语言 代码 · 共 14 行
C
14 行
#include "reset.h"
/*********************************************************************
* Function Name : isMCLR
* Description : Checks if reset condition is due to MCLR low
* Parameters : None
* Return Value : Return EXTR bit status
*********************************************************************/
char isMCLR(void)
{
return (RCONbits.EXTR); /* return EXTR bit status */
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?