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.
Diff: util/types.h
- Revision:
- 0:7e2eb93442e7
diff -r 000000000000 -r 7e2eb93442e7 util/types.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/util/types.h Sun Dec 12 19:34:41 2010 +0000 @@ -0,0 +1,20 @@ +#ifndef TYPES_H +#define TYPES_H + +/** + \file types.h + \brief Type definitions + + This file contains some utility type definitions +*/ + +/// 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 \ No newline at end of file