dummyisr.c

来自「freescale的基于802.15.4的无线通讯例程」· C语言 代码 · 共 24 行

C
24
字号
/************************************************************************************
* This module contains the dummy ISR function
* 
*
*
* (c) Copyright 2006, Freescale Semiconductor, Inc. All rights reserved.
*
* Freescale Confidential Proprietary
*
* No part of this document must be reproduced in any form - including copied,
* transcribed, printed or by any electronic means - without specific written
* permission from Freescale.
************************************************************************************/

// **************************************************************************

__interrupt void Default_Dummy_ISR(void)
{
   // Unimplemented ISRs trap.
   asm BGND;
}

// **************************************************************************

⌨️ 快捷键说明

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