MP3 Player without external hardware MP3 Player without external hardware. A software based MP3 player based on a modified version of libmad. Mono output (at the moment) via AnalogOut. Files are read from an USB drive. This is a demo program, it plays only one file at the moment. Documentation is in "main.cpp" and "config.h"

Dependencies:   mbed

Committer:
Gruenfrosch
Date:
Fri Nov 26 12:18:30 2010 +0000
Revision:
0:7627c79db971
First Version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Gruenfrosch 0:7627c79db971 1 /*
Gruenfrosch 0:7627c79db971 2 **************************************************************************************************************
Gruenfrosch 0:7627c79db971 3 * NXP USB Host Stack
Gruenfrosch 0:7627c79db971 4 *
Gruenfrosch 0:7627c79db971 5 * (c) Copyright 2008, NXP SemiConductors
Gruenfrosch 0:7627c79db971 6 * (c) Copyright 2008, OnChip Technologies LLC
Gruenfrosch 0:7627c79db971 7 * All Rights Reserved
Gruenfrosch 0:7627c79db971 8 *
Gruenfrosch 0:7627c79db971 9 * www.nxp.com
Gruenfrosch 0:7627c79db971 10 * www.onchiptech.com
Gruenfrosch 0:7627c79db971 11 *
Gruenfrosch 0:7627c79db971 12 * File : usbhost_cpu.h
Gruenfrosch 0:7627c79db971 13 * Programmer(s) : Ravikanth.P
Gruenfrosch 0:7627c79db971 14 * Version :
Gruenfrosch 0:7627c79db971 15 *
Gruenfrosch 0:7627c79db971 16 **************************************************************************************************************
Gruenfrosch 0:7627c79db971 17 */
Gruenfrosch 0:7627c79db971 18
Gruenfrosch 0:7627c79db971 19 #ifndef USBHOST_CPU_H
Gruenfrosch 0:7627c79db971 20 #define USBHOST_CPU_H
Gruenfrosch 0:7627c79db971 21
Gruenfrosch 0:7627c79db971 22 /*
Gruenfrosch 0:7627c79db971 23 **************************************************************************************************************
Gruenfrosch 0:7627c79db971 24 * TYPE DEFINITIONS OF DATA TYPES
Gruenfrosch 0:7627c79db971 25 **************************************************************************************************************
Gruenfrosch 0:7627c79db971 26 */
Gruenfrosch 0:7627c79db971 27
Gruenfrosch 0:7627c79db971 28 typedef unsigned int USB_INT32U;
Gruenfrosch 0:7627c79db971 29 typedef signed int USB_INT32S;
Gruenfrosch 0:7627c79db971 30 typedef unsigned short USB_INT16U;
Gruenfrosch 0:7627c79db971 31 typedef signed short USB_INT16S;
Gruenfrosch 0:7627c79db971 32 typedef unsigned char USB_INT08U;
Gruenfrosch 0:7627c79db971 33 typedef signed char USB_INT08S;
Gruenfrosch 0:7627c79db971 34
Gruenfrosch 0:7627c79db971 35 #endif