Newer
Older
mbed-os / hal / targets / cmsis / TARGET_ARM_SSG / TARGET_BEETLE / cmsis_nvic.h
@Vincenzo Frascino Vincenzo Frascino on 12 Sep 2016 1020 bytes [BEETLE] Add CMSIS 5 virtual NVIC compliancy
/* mbed Microcontroller Library
 * Copyright (c) 2015-2016 ARM Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * CMSIS-style functionality to support dynamic vectors
 */

#ifndef MBED_CMSIS_NVIC_H
#define MBED_CMSIS_NVIC_H

#include "cmsis.h"

#define NVIC_NUM_VECTORS      (16 + 48)
#define NVIC_USER_IRQ_OFFSET  16

#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