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

📄 swi270.h

📁 dm270 source code
💻 H
字号:
/*
    DM270 ARM Evaluation Software

    (c)Texas Instruments 2003
*/

/** \defgroup ARM_SWI ARM Software interrupts */
/*@{*/

/** \file  swi270.h
    \brief ARM Software interrupts related APIs

	Source code for these SWI is in \b swi270.asm
*/
/*
    DM270 ARM Evaluation Software

    (c)Texas Instruments 2003
*/

#ifndef __SWI_270_H__
#define __SWI_270_H__

/**
	\brief Enable ARM7 IRQ interrupt
*/
#pragma SWI_ALIAS(EnableIRQ, 0)
extern void EnableIRQ();

/**
	\brief Disable ARM7 IRQ interrupt
*/
#pragma SWI_ALIAS(DisableIRQ, 1)
extern void DisableIRQ();

/**
	\brief Enable ARM7 FIQ interrupt
*/
#pragma SWI_ALIAS(EnableFIQ, 2)
extern void EnableFIQ();

/**
	\brief Disable ARM7 FIQ interrupt
*/
#pragma SWI_ALIAS(DisableFIQ, 3)
extern void DisableFIQ();

#endif	/*	__SWI_270_H__	*/

/*@}*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -