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.

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?

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