?? 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 */
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -