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.
util/types.h
- Committer:
- etherealflaim
- Date:
- 2010-10-12
- Revision:
- 4:88fc7fa58931
- Parent:
- 0:d494b853ce97
- Child:
- 6:66c4cd9073aa
File content as of revision 4:88fc7fa58931:
#ifndef TYPES_H #define TYPES_H /// Unsigned 8 bit value typedef unsigned char u8; /// Unsigned 16 bit value typedef unsigned short u16; /// Unsigned 32 bit value typedef unsigned int u32; #endif