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

📄 os.c

📁 udp,tcp/ip在智能家居芯片上的代码实现.包括芯片NE64的网络驱动源代码
💻 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 + -