Fork of the official mbed C/C++ SDK provides the software platform and libraries to build your applications. The fork has the documentation converted to Doxygen format

Dependents:   NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more

Fork of mbed by mbed official

PortNames.h

Committer:
screamer
Date:
2012-10-24
Revision:
43:aff670d0d510
Parent:
27:7110ebee3484

File content as of revision 43:aff670d0d510:

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

#ifndef MBED_PORTNAMES_H
#define MBED_PORTNAMES_H

#ifdef __cplusplus
extern "C" {
#endif

#if defined(TARGET_LPC1768) || defined(TARGET_LPC2368)

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

#elif defined(TARGET_LPC11U24)

enum PortName {
    Port0 = 0
    , Port1 = 1
};
typedef enum PortName PortName;


#endif

#ifdef __cplusplus
}
#endif
#endif