Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed by
PortNames.h
- Committer:
- simon.ford@mbed.co.uk
- Date:
- 2010-05-17
- Revision:
- 18:b3c9f16cbb96
- Child:
- 27:7110ebee3484
File content as of revision 18:b3c9f16cbb96:
/* 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
