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.
BusEnums_copy.h
- Committer:
- GuiTwo
- Date:
- 2012-09-04
- Revision:
- 2:6a8fbb08d519
File content as of revision 2:6a8fbb08d519:
/* BusEnums - Use the MBED Port pins and PCF8574s for controlling the Bus
* Copyright (c) 2011 Wim Huiskamp
*
* Released under the MIT License: http://mbed.org/license/mit
*
* version 0.2 Initial Release
*/
#ifndef _BUS_ENUMS_H
#define _BUS_ENUMS_H
//Enums for Control Bus and Enable Bus
enum Bit_Level { LOW, HIGH };
enum Bus_Dir { READ, WRITE };
enum Bus_Ena { ENABLE, DISABLE };
#endif