SMARTEST lib for MPS2

Dependents:   MSP2_LCD_HOLA

Committer:
FelipeVR
Date:
Thu Aug 23 13:39:38 2018 +0000
Revision:
0:f1a413971403
SMARTEST LCD

Who changed what in which revision?

UserRevisionLine numberNew contents of line
FelipeVR 0:f1a413971403 1 /*-----------------------------------------------------------------------------
FelipeVR 0:f1a413971403 2 * Name: Device.h
FelipeVR 0:f1a413971403 3 * Purpose: Include the correct device header file
FelipeVR 0:f1a413971403 4 *-----------------------------------------------------------------------------
FelipeVR 0:f1a413971403 5 * This file is part of the uVision/ARM development tools.
FelipeVR 0:f1a413971403 6 * This software may only be used under the terms of a valid, current,
FelipeVR 0:f1a413971403 7 * end user licence from KEIL for a compatible version of KEIL software
FelipeVR 0:f1a413971403 8 * development tools. Nothing else gives you the right to use this software.
FelipeVR 0:f1a413971403 9 *
FelipeVR 0:f1a413971403 10 * This software is supplied "AS IS" without warranties of any kind.
FelipeVR 0:f1a413971403 11 *
FelipeVR 0:f1a413971403 12 * Copyright (c) 2013 KEIL - An ARM Company. All rights reserved.
FelipeVR 0:f1a413971403 13 *----------------------------------------------------------------------------*/
FelipeVR 0:f1a413971403 14
FelipeVR 0:f1a413971403 15 #ifndef __DEVICE_H
FelipeVR 0:f1a413971403 16 #define __DEVICE_H
FelipeVR 0:f1a413971403 17
FelipeVR 0:f1a413971403 18 #if defined CMSDK_CM0
FelipeVR 0:f1a413971403 19 #include "CMSDK_CM0.h" /* device specific header file */
FelipeVR 0:f1a413971403 20 #elif defined CMSDK_CM0plus
FelipeVR 0:f1a413971403 21 #include "CMSDK_CM0plus.h" /* device specific header file */
FelipeVR 0:f1a413971403 22 #elif defined CMSDK_CM3
FelipeVR 0:f1a413971403 23 #include "CMSDK_CM3.h" /* device specific header file */
FelipeVR 0:f1a413971403 24 #elif defined CMSDK_CM4
FelipeVR 0:f1a413971403 25 #include "CMSDK_CM4.h" /* device specific header file */
FelipeVR 0:f1a413971403 26 #else
FelipeVR 0:f1a413971403 27 #warning "no appropriate header file found!"
FelipeVR 0:f1a413971403 28 #endif
FelipeVR 0:f1a413971403 29
FelipeVR 0:f1a413971403 30 #endif /* __DEVICE_H */