Read GPS MT3329

Dependencies:   FatFileSystem mbed

Committer:
belloula
Date:
Sun Mar 29 14:43:22 2015 +0000
Revision:
0:9611b40fec6f
Read from MT3329 GPS and print on Pc (usb serial pc)

Who changed what in which revision?

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