Morpheus / target-freescale-ksdk

Fork of target-freescale-ksdk by -deleted-

Committer:
screamer
Date:
Wed Mar 23 21:26:50 2016 +0000
Revision:
0:e4d670b91a9a
Initial revision

Who changed what in which revision?

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