This software will read a .wav file from an SD card and display the header information contained within it. It is designed to work with the SD card on the mbed carrier which is part of the RS-EDP system.

Dependencies:   mbed SDFileSystem

HeaderFiles/misra_types.h

Committer:
DavidGilesHitex
Date:
2010-11-19
Revision:
0:35c1800c59e6

File content as of revision 0:35c1800c59e6:

/* Hitex Standard Header File */
/* Types As Recommended By MISRA */



/* Bytes (8bit length) */
typedef unsigned char uint8_t;
typedef char sint8_t;

/* Half Words (16bit lengths) */
typedef unsigned short uint16_t;
typedef short sint16_t;

/* Words (32bit lengths) */
/* Also int */
typedef unsigned int uint32_t;
typedef long sint32_t;

/* Double Words */
typedef unsigned long long uint64_t;
typedef long long sint64_t;


/*
 Constants should use the following suffixes also 

u - Unsigned
f - floating
L - Long double (64bit)

*/