📄 os.c
字号:
/****************************************************************************
*
* (c) Freescale Inc. 2004 All rights reserved
*
* File Name : os.c
* Description : This file contains OS dependant ENTER and EXIT CRITICAL
*
* Version : 1.0
* Date : Apr/04/04
*
*
****************************************************************************/
#include "os.h"
/****************************************************************************
*
*
*****************************************************************************/
void os_enter_critical_section (void)
{
{ __asm SEI; }; /* Disable Interrupts */
}
/****************************************************************************
*
*
*****************************************************************************/
void os_exit_critical_section (void)
{
{ __asm CLI; }; /* Enable Interrupts */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -