mirror of https://github.com/ARMmbed/mbed-os.git
34 lines
844 B
C
34 lines
844 B
C
/* mbed Microcontroller Library
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
******************************************************************************
|
|
*
|
|
* Copyright (c) 2015-2020 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef MBED_CMSIS_H
|
|
#define MBED_CMSIS_H
|
|
|
|
#include "stm32f0xx.h"
|
|
#include "cmsis_nvic.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void NVIC_SetVector(IRQn_Type IRQn, uint32_t vector);
|
|
uint32_t NVIC_GetVector(IRQn_Type IRQn);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|