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.

PortNames.h

Committer:
simon
Date:
2010-05-18
Revision:
19:e6be4cd80aad
Parent:
18:b3c9f16cbb96
Child:
27:7110ebee3484

File content as of revision 19:e6be4cd80aad:

/* mbed Microcontroller Library - PortName 
 * Copyright (c) 2010 ARM Limited. All rights reserved.
 * jward
 */

#ifndef MBED_PORTNAMES_H
#define MBED_PORTNAMES_H

#ifdef __cplusplus
extern "C" {
#endif

typedef enum PortName PortName;
enum PortName {
    Port0 = 0
    , Port1 = 1
    , Port2 = 2
    , Port3 = 3
    , Port4 = 4
};

#ifdef __cplusplus
}
#endif
#endif