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 SB1602E MSCFILESytem FatFileSystemCpp TextLCD
USBHostLite/usbhost_cpu.h@0:a6417f504b9d, 2020-04-08 (annotated)
- Committer:
- MPPT51
- Date:
- Wed Apr 08 01:18:43 2020 +0000
- Revision:
- 0:a6417f504b9d
MonitoringSys_includingToukarui
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MPPT51 | 0:a6417f504b9d | 1 | /* |
MPPT51 | 0:a6417f504b9d | 2 | ************************************************************************************************************** |
MPPT51 | 0:a6417f504b9d | 3 | * NXP USB Host Stack |
MPPT51 | 0:a6417f504b9d | 4 | * |
MPPT51 | 0:a6417f504b9d | 5 | * (c) Copyright 2008, NXP SemiConductors |
MPPT51 | 0:a6417f504b9d | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
MPPT51 | 0:a6417f504b9d | 7 | * All Rights Reserved |
MPPT51 | 0:a6417f504b9d | 8 | * |
MPPT51 | 0:a6417f504b9d | 9 | * www.nxp.com |
MPPT51 | 0:a6417f504b9d | 10 | * www.onchiptech.com |
MPPT51 | 0:a6417f504b9d | 11 | * |
MPPT51 | 0:a6417f504b9d | 12 | * File : usbhost_cpu.h |
MPPT51 | 0:a6417f504b9d | 13 | * Programmer(s) : Ravikanth.P |
MPPT51 | 0:a6417f504b9d | 14 | * Version : |
MPPT51 | 0:a6417f504b9d | 15 | * |
MPPT51 | 0:a6417f504b9d | 16 | ************************************************************************************************************** |
MPPT51 | 0:a6417f504b9d | 17 | */ |
MPPT51 | 0:a6417f504b9d | 18 | |
MPPT51 | 0:a6417f504b9d | 19 | #ifndef USBHOST_CPU_H |
MPPT51 | 0:a6417f504b9d | 20 | #define USBHOST_CPU_H |
MPPT51 | 0:a6417f504b9d | 21 | |
MPPT51 | 0:a6417f504b9d | 22 | /* |
MPPT51 | 0:a6417f504b9d | 23 | ************************************************************************************************************** |
MPPT51 | 0:a6417f504b9d | 24 | * TYPE DEFINITIONS OF DATA TYPES |
MPPT51 | 0:a6417f504b9d | 25 | ************************************************************************************************************** |
MPPT51 | 0:a6417f504b9d | 26 | */ |
MPPT51 | 0:a6417f504b9d | 27 | |
MPPT51 | 0:a6417f504b9d | 28 | typedef unsigned int USB_INT32U; |
MPPT51 | 0:a6417f504b9d | 29 | typedef signed int USB_INT32S; |
MPPT51 | 0:a6417f504b9d | 30 | typedef unsigned short USB_INT16U; |
MPPT51 | 0:a6417f504b9d | 31 | typedef signed short USB_INT16S; |
MPPT51 | 0:a6417f504b9d | 32 | typedef unsigned char USB_INT08U; |
MPPT51 | 0:a6417f504b9d | 33 | typedef signed char USB_INT08S; |
MPPT51 | 0:a6417f504b9d | 34 | |
MPPT51 | 0:a6417f504b9d | 35 | #endif |