File: int_def.h
This header includes stdint.h which includes the following compiler independent definitions:
- uint8_t Unsigned Integer 8-bit
- uint16_t Unsigned Integer 16-bit
- uint32_t Unsigned Integer 32-bit
- uint64_t Unsigned Integer 64-bit
- int8_t Signed Integer 8-bit
- int16_t Signed Integer 16-bit
- int32_t Signed Integer 32-bit
- int64_t Signed Integer 64-bit
Addionally union types are defined to assist with integer manipulation at the word, byte, or bit level. Included are:
- union8_t 8-bit union with byte and bitfield access
- union16_t 16-bit union with word, byte array, and bitfield access
- union32_t 32-bit union with phrase, word array, byte array, and bitfield access
- Author
- Embedded Processors Class 2013
- Date
- Created on February 13, 2013, 5:53 PM