Code to take GPS, Accelerometer and Compass readings and print to USB for data analysis.
Dependencies: CMPS03 FatFileSystemCpp GPS MMA7660 mbed C12832_lcd
USBHostLite/usbhost_cpu.h@0:2557081b4322, 2014-05-07 (annotated)
- Committer:
- Alex4475
- Date:
- Wed May 07 09:49:54 2014 +0000
- Revision:
- 0:2557081b4322
Code to take GPS, Accelerometer and Compass data and print to a USB for data analysis
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Alex4475 | 0:2557081b4322 | 1 | /* |
Alex4475 | 0:2557081b4322 | 2 | ************************************************************************************************************** |
Alex4475 | 0:2557081b4322 | 3 | * NXP USB Host Stack |
Alex4475 | 0:2557081b4322 | 4 | * |
Alex4475 | 0:2557081b4322 | 5 | * (c) Copyright 2008, NXP SemiConductors |
Alex4475 | 0:2557081b4322 | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
Alex4475 | 0:2557081b4322 | 7 | * All Rights Reserved |
Alex4475 | 0:2557081b4322 | 8 | * |
Alex4475 | 0:2557081b4322 | 9 | * www.nxp.com |
Alex4475 | 0:2557081b4322 | 10 | * www.onchiptech.com |
Alex4475 | 0:2557081b4322 | 11 | * |
Alex4475 | 0:2557081b4322 | 12 | * File : usbhost_cpu.h |
Alex4475 | 0:2557081b4322 | 13 | * Programmer(s) : Ravikanth.P |
Alex4475 | 0:2557081b4322 | 14 | * Version : |
Alex4475 | 0:2557081b4322 | 15 | * |
Alex4475 | 0:2557081b4322 | 16 | ************************************************************************************************************** |
Alex4475 | 0:2557081b4322 | 17 | */ |
Alex4475 | 0:2557081b4322 | 18 | |
Alex4475 | 0:2557081b4322 | 19 | #ifndef USBHOST_CPU_H |
Alex4475 | 0:2557081b4322 | 20 | #define USBHOST_CPU_H |
Alex4475 | 0:2557081b4322 | 21 | |
Alex4475 | 0:2557081b4322 | 22 | /* |
Alex4475 | 0:2557081b4322 | 23 | ************************************************************************************************************** |
Alex4475 | 0:2557081b4322 | 24 | * TYPE DEFINITIONS OF DATA TYPES |
Alex4475 | 0:2557081b4322 | 25 | ************************************************************************************************************** |
Alex4475 | 0:2557081b4322 | 26 | */ |
Alex4475 | 0:2557081b4322 | 27 | |
Alex4475 | 0:2557081b4322 | 28 | typedef unsigned int USB_INT32U; |
Alex4475 | 0:2557081b4322 | 29 | typedef signed int USB_INT32S; |
Alex4475 | 0:2557081b4322 | 30 | typedef unsigned short USB_INT16U; |
Alex4475 | 0:2557081b4322 | 31 | typedef signed short USB_INT16S; |
Alex4475 | 0:2557081b4322 | 32 | typedef unsigned char USB_INT08U; |
Alex4475 | 0:2557081b4322 | 33 | typedef signed char USB_INT08S; |
Alex4475 | 0:2557081b4322 | 34 | |
Alex4475 | 0:2557081b4322 | 35 | #endif |