2013-11-09 00:43:35 +01:00
|
|
|
/* mbed Microcontroller Library - CMSIS
|
|
|
|
* Copyright (C) 2009-2011 ARM Limited. All rights reserved.
|
2014-02-11 18:15:43 +01:00
|
|
|
*
|
2013-11-09 00:43:35 +01:00
|
|
|
* A generic CMSIS include header, pulling in LPC1768 specifics
|
|
|
|
*/
|
|
|
|
|
2014-04-16 12:06:53 +02:00
|
|
|
/**
|
|
|
|
* @defgroup CMSIS
|
2014-05-24 15:56:57 +02:00
|
|
|
* @brief Cortex Microcontroller Software Interface Standard
|
2014-04-16 12:06:53 +02:00
|
|
|
* @ingroup cpu
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file cmsis.h
|
|
|
|
* @brief CMSIS interface pulling in LPC1768 specifics
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-11-09 00:43:35 +01:00
|
|
|
#ifndef MBED_CMSIS_H
|
|
|
|
#define MBED_CMSIS_H
|
|
|
|
|
|
|
|
#include "LPC17xx.h"
|
|
|
|
#include "cmsis_nvic.h"
|
|
|
|
|
|
|
|
#endif
|
2014-04-16 12:06:53 +02:00
|
|
|
/** @} */
|