2014-06-27 12:26:24 +08:00
|
|
|
/*
|
2019-01-07 06:09:45 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2014-06-27 12:26:24 +08:00
|
|
|
*
|
2019-01-07 06:09:45 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2014-06-27 12:26:24 +08:00
|
|
|
*
|
2019-01-07 06:09:45 +08:00
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2013-07-20 Bernard first version
|
2014-06-27 12:26:24 +08:00
|
|
|
*/
|
|
|
|
|
2019-01-07 06:09:45 +08:00
|
|
|
#ifndef __INTERRUPT_H__
|
|
|
|
#define __INTERRUPT_H__
|
|
|
|
|
2014-06-27 12:26:24 +08:00
|
|
|
void rt_hw_interrupt_clear(int vector);
|
|
|
|
|
|
|
|
#endif /* end of include guard: __INTERRUPT_H__ */
|
|
|
|
|