The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
mbed 2
This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.
TARGET_KL43Z/TOOLCHAIN_IAR/PortNames.h@172:65be27845400, 2019-02-20 (annotated)
- Committer:
- AnnaBridge
- Date:
- Wed Feb 20 20:53:29 2019 +0000
- Revision:
- 172:65be27845400
- Parent:
- 171:3a7713b1edbc
mbed library release version 165
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AnnaBridge | 145:64910690c574 | 1 | /* mbed Microcontroller Library |
AnnaBridge | 145:64910690c574 | 2 | * Copyright (c) 2006-2013 ARM Limited |
AnnaBridge | 145:64910690c574 | 3 | * |
AnnaBridge | 145:64910690c574 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
AnnaBridge | 145:64910690c574 | 5 | * you may not use this file except in compliance with the License. |
AnnaBridge | 145:64910690c574 | 6 | * You may obtain a copy of the License at |
AnnaBridge | 145:64910690c574 | 7 | * |
AnnaBridge | 145:64910690c574 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
AnnaBridge | 145:64910690c574 | 9 | * |
AnnaBridge | 145:64910690c574 | 10 | * Unless required by applicable law or agreed to in writing, software |
AnnaBridge | 145:64910690c574 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AnnaBridge | 145:64910690c574 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
AnnaBridge | 145:64910690c574 | 13 | * See the License for the specific language governing permissions and |
AnnaBridge | 145:64910690c574 | 14 | * limitations under the License. |
AnnaBridge | 145:64910690c574 | 15 | */ |
AnnaBridge | 145:64910690c574 | 16 | #ifndef MBED_PORTNAMES_H |
AnnaBridge | 145:64910690c574 | 17 | #define MBED_PORTNAMES_H |
AnnaBridge | 145:64910690c574 | 18 | |
AnnaBridge | 145:64910690c574 | 19 | #ifdef __cplusplus |
AnnaBridge | 145:64910690c574 | 20 | extern "C" { |
AnnaBridge | 145:64910690c574 | 21 | #endif |
AnnaBridge | 145:64910690c574 | 22 | |
AnnaBridge | 145:64910690c574 | 23 | typedef enum { |
AnnaBridge | 145:64910690c574 | 24 | PortA = 0, |
AnnaBridge | 145:64910690c574 | 25 | PortB = 1, |
AnnaBridge | 145:64910690c574 | 26 | PortC = 2, |
AnnaBridge | 145:64910690c574 | 27 | PortD = 3, |
AnnaBridge | 145:64910690c574 | 28 | PortE = 4 |
AnnaBridge | 145:64910690c574 | 29 | } PortName; |
AnnaBridge | 145:64910690c574 | 30 | |
AnnaBridge | 145:64910690c574 | 31 | #ifdef __cplusplus |
AnnaBridge | 145:64910690c574 | 32 | } |
AnnaBridge | 145:64910690c574 | 33 | #endif |
AnnaBridge | 145:64910690c574 | 34 | |
AnnaBridge | 145:64910690c574 | 35 | #endif |