mbed SDK library sources

Fork of mbed-src by mbed official

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Mon Sep 23 11:30:07 2013 +0100
Revision:
29:6ac4027eff2b
Parent:
19:398f4c622e1b
Synchronized with git revision 4e23b72a78e8adfcaf3e52831780eca6d7a7bafe

Who changed what in which revision?

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