パラメータを適応変化させる事により圧縮率を向上させた動的ライス・ゴロム符号を利用した可逆圧縮方式。圧縮ソフト、圧縮率のMATLABシミュレーションは詳細はInterface誌2011年8月号に掲載されるRX62Nマイコン連動特集にて掲載予定。

Dependencies:   mbed

Committer:
lynxeyed_atsu
Date:
Wed Mar 30 06:05:24 2011 +0000
Revision:
0:d920d64db582
alpha

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lynxeyed_atsu 0:d920d64db582 1 /*
lynxeyed_atsu 0:d920d64db582 2 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 3 * NXP USB Host Stack
lynxeyed_atsu 0:d920d64db582 4 *
lynxeyed_atsu 0:d920d64db582 5 * (c) Copyright 2008, NXP SemiConductors
lynxeyed_atsu 0:d920d64db582 6 * (c) Copyright 2008, OnChip Technologies LLC
lynxeyed_atsu 0:d920d64db582 7 * All Rights Reserved
lynxeyed_atsu 0:d920d64db582 8 *
lynxeyed_atsu 0:d920d64db582 9 * www.nxp.com
lynxeyed_atsu 0:d920d64db582 10 * www.onchiptech.com
lynxeyed_atsu 0:d920d64db582 11 *
lynxeyed_atsu 0:d920d64db582 12 * File : usbhost_inc.h
lynxeyed_atsu 0:d920d64db582 13 * Programmer(s) : Ravikanth.P
lynxeyed_atsu 0:d920d64db582 14 * Version :
lynxeyed_atsu 0:d920d64db582 15 *
lynxeyed_atsu 0:d920d64db582 16 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 17 */
lynxeyed_atsu 0:d920d64db582 18
lynxeyed_atsu 0:d920d64db582 19 #ifndef USBHOST_INC_H
lynxeyed_atsu 0:d920d64db582 20 #define USBHOST_INC_H
lynxeyed_atsu 0:d920d64db582 21
lynxeyed_atsu 0:d920d64db582 22 /*
lynxeyed_atsu 0:d920d64db582 23 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 24 * INCLUDE HEADER FILES
lynxeyed_atsu 0:d920d64db582 25 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 26 */
lynxeyed_atsu 0:d920d64db582 27
lynxeyed_atsu 0:d920d64db582 28 #include "usbhost_cpu.h"
lynxeyed_atsu 0:d920d64db582 29 #include "usbhost_err.h"
lynxeyed_atsu 0:d920d64db582 30 #include "usbhost_lpc17xx.h"
lynxeyed_atsu 0:d920d64db582 31 #include "usbhost_ms.h"
lynxeyed_atsu 0:d920d64db582 32 #include "mbed.h"
lynxeyed_atsu 0:d920d64db582 33
lynxeyed_atsu 0:d920d64db582 34
lynxeyed_atsu 0:d920d64db582 35 #ifdef TARGET_LPC2368
lynxeyed_atsu 0:d920d64db582 36 #error "There is no USB host on the LPC2368!"
lynxeyed_atsu 0:d920d64db582 37 #endif
lynxeyed_atsu 0:d920d64db582 38
lynxeyed_atsu 0:d920d64db582 39 #endif