my fork

Dependents:   Nucleo_blueNRG

Fork of mbed by mbed official

Committer:
bogdanm
Date:
Mon Aug 05 12:28:09 2013 +0300
Revision:
64:e3affc9e7238
Parent:
KL25Z/PortNames.h@60:3d0ef94e36ec
Child:
66:9c8f0e3462fb
New build system structure, new target (LPC1347), bug fixes (I2C read/write errors, LPC11U24 memory map and others)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 60:3d0ef94e36ec 1 /* mbed Microcontroller Library
emilmont 60:3d0ef94e36ec 2 * Copyright (c) 2006-2013 ARM Limited
emilmont 60:3d0ef94e36ec 3 *
emilmont 60:3d0ef94e36ec 4 * Licensed under the Apache License, Version 2.0 (the "License");
emilmont 60:3d0ef94e36ec 5 * you may not use this file except in compliance with the License.
emilmont 60:3d0ef94e36ec 6 * You may obtain a copy of the License at
emilmont 60:3d0ef94e36ec 7 *
emilmont 60:3d0ef94e36ec 8 * http://www.apache.org/licenses/LICENSE-2.0
emilmont 60:3d0ef94e36ec 9 *
emilmont 60:3d0ef94e36ec 10 * Unless required by applicable law or agreed to in writing, software
emilmont 60:3d0ef94e36ec 11 * distributed under the License is distributed on an "AS IS" BASIS,
emilmont 60:3d0ef94e36ec 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
emilmont 60:3d0ef94e36ec 13 * See the License for the specific language governing permissions and
emilmont 60:3d0ef94e36ec 14 * limitations under the License.
emilmont 60:3d0ef94e36ec 15 */
emilmont 60:3d0ef94e36ec 16 #ifndef MBED_PORTNAMES_H
emilmont 60:3d0ef94e36ec 17 #define MBED_PORTNAMES_H
emilmont 60:3d0ef94e36ec 18
emilmont 60:3d0ef94e36ec 19 #ifdef __cplusplus
emilmont 60:3d0ef94e36ec 20 extern "C" {
emilmont 60:3d0ef94e36ec 21 #endif
emilmont 60:3d0ef94e36ec 22
emilmont 60:3d0ef94e36ec 23 typedef enum {
emilmont 60:3d0ef94e36ec 24 PortA = 0,
emilmont 60:3d0ef94e36ec 25 PortB = 1,
emilmont 60:3d0ef94e36ec 26 PortC = 2,
emilmont 60:3d0ef94e36ec 27 PortD = 3,
emilmont 60:3d0ef94e36ec 28 PortE = 4
emilmont 60:3d0ef94e36ec 29 } PortName;
emilmont 60:3d0ef94e36ec 30
emilmont 60:3d0ef94e36ec 31 #ifdef __cplusplus
emilmont 60:3d0ef94e36ec 32 }
emilmont 60:3d0ef94e36ec 33 #endif
emilmont 60:3d0ef94e36ec 34 #endif