18 lines
348 B
C
18 lines
348 B
C
|
/*
|
||
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2013-07-20 Bernard first version
|
||
|
*/
|
||
|
|
||
|
#ifndef __INTERRUPT_H__
|
||
|
#define __INTERRUPT_H__
|
||
|
|
||
|
void rt_hw_interrupt_clear(int vector);
|
||
|
|
||
|
#endif /* end of include guard: __INTERRUPT_H__ */
|
||
|
|