mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 14:33:30 +08:00
18 lines
312 B
C
18 lines
312 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2015-04-14 ArdaFu first version
|
|
*/
|
|
#ifndef __INTERRUPT_H__
|
|
#define __INTERRUPT_H__
|
|
|
|
#define INT_IRQ 0x00
|
|
#define INT_FIQ 0x01
|
|
|
|
|
|
#endif
|