Codec for an NRF24L01 based protocol

types.h

Committer:
ihunter
Date:
2011-08-30
Revision:
3:80ed23c0ae01

File content as of revision 3:80ed23c0ae01:

#ifndef TYPES_H
#define TYPES_H

// I cant bear these '_t'
typedef uint8_t  uint8;
typedef uint16_t uint16;
typedef uint32_t uint32;
typedef int8_t   sint8;
typedef int16_t  sint16;
typedef int32_t  sint32;

#endif