Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed
Fork of HTTPServerHelloWorld by
HardwareDrivers/USBHostLite/usbhost_cpu.h@6:b2c4687b421d, 2014-02-02 (annotated)
- Committer:
- wyunreal
- Date:
- Sun Feb 02 16:57:24 2014 +0000
- Revision:
- 6:b2c4687b421d
Adding support for mass storage devices and making new request handlers to provide access to the webApp sources and logs
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| wyunreal | 6:b2c4687b421d | 1 | /* |
| wyunreal | 6:b2c4687b421d | 2 | ************************************************************************************************************** |
| wyunreal | 6:b2c4687b421d | 3 | * NXP USB Host Stack |
| wyunreal | 6:b2c4687b421d | 4 | * |
| wyunreal | 6:b2c4687b421d | 5 | * (c) Copyright 2008, NXP SemiConductors |
| wyunreal | 6:b2c4687b421d | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
| wyunreal | 6:b2c4687b421d | 7 | * All Rights Reserved |
| wyunreal | 6:b2c4687b421d | 8 | * |
| wyunreal | 6:b2c4687b421d | 9 | * www.nxp.com |
| wyunreal | 6:b2c4687b421d | 10 | * www.onchiptech.com |
| wyunreal | 6:b2c4687b421d | 11 | * |
| wyunreal | 6:b2c4687b421d | 12 | * File : usbhost_cpu.h |
| wyunreal | 6:b2c4687b421d | 13 | * Programmer(s) : Ravikanth.P |
| wyunreal | 6:b2c4687b421d | 14 | * Version : |
| wyunreal | 6:b2c4687b421d | 15 | * |
| wyunreal | 6:b2c4687b421d | 16 | ************************************************************************************************************** |
| wyunreal | 6:b2c4687b421d | 17 | */ |
| wyunreal | 6:b2c4687b421d | 18 | |
| wyunreal | 6:b2c4687b421d | 19 | #ifndef USBHOST_CPU_H |
| wyunreal | 6:b2c4687b421d | 20 | #define USBHOST_CPU_H |
| wyunreal | 6:b2c4687b421d | 21 | |
| wyunreal | 6:b2c4687b421d | 22 | /* |
| wyunreal | 6:b2c4687b421d | 23 | ************************************************************************************************************** |
| wyunreal | 6:b2c4687b421d | 24 | * TYPE DEFINITIONS OF DATA TYPES |
| wyunreal | 6:b2c4687b421d | 25 | ************************************************************************************************************** |
| wyunreal | 6:b2c4687b421d | 26 | */ |
| wyunreal | 6:b2c4687b421d | 27 | |
| wyunreal | 6:b2c4687b421d | 28 | typedef unsigned int USB_INT32U; |
| wyunreal | 6:b2c4687b421d | 29 | typedef signed int USB_INT32S; |
| wyunreal | 6:b2c4687b421d | 30 | typedef unsigned short USB_INT16U; |
| wyunreal | 6:b2c4687b421d | 31 | typedef signed short USB_INT16S; |
| wyunreal | 6:b2c4687b421d | 32 | typedef unsigned char USB_INT08U; |
| wyunreal | 6:b2c4687b421d | 33 | typedef signed char USB_INT08S; |
| wyunreal | 6:b2c4687b421d | 34 | |
| wyunreal | 6:b2c4687b421d | 35 | #endif |
