パラメータを適応変化させる事により圧縮率を向上させた動的ライス・ゴロム符号を利用した可逆圧縮方式。圧縮ソフト、圧縮率の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_err.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_ERR_H
lynxeyed_atsu 0:d920d64db582 20 #define USBHOST_ERR_H
lynxeyed_atsu 0:d920d64db582 21
lynxeyed_atsu 0:d920d64db582 22
lynxeyed_atsu 0:d920d64db582 23 /*
lynxeyed_atsu 0:d920d64db582 24 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 25 * GENERAL DEFINITIONS
lynxeyed_atsu 0:d920d64db582 26 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 27 */
lynxeyed_atsu 0:d920d64db582 28
lynxeyed_atsu 0:d920d64db582 29 #define OK 0
lynxeyed_atsu 0:d920d64db582 30 #define MATCH_FOUND 0
lynxeyed_atsu 0:d920d64db582 31
lynxeyed_atsu 0:d920d64db582 32 /*
lynxeyed_atsu 0:d920d64db582 33 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 34 * HOST CONTROLLER SPECIFIC ERROR CODES
lynxeyed_atsu 0:d920d64db582 35 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 36 */
lynxeyed_atsu 0:d920d64db582 37
lynxeyed_atsu 0:d920d64db582 38 #define ERR_TD_FAIL -1
lynxeyed_atsu 0:d920d64db582 39
lynxeyed_atsu 0:d920d64db582 40 /*
lynxeyed_atsu 0:d920d64db582 41 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 42 * MASS STORAGE SPECIFIC ERROR CODES
lynxeyed_atsu 0:d920d64db582 43 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 44 */
lynxeyed_atsu 0:d920d64db582 45
lynxeyed_atsu 0:d920d64db582 46 #define ERR_MS_CMD_FAILED -10
lynxeyed_atsu 0:d920d64db582 47 #define ERR_BAD_CONFIGURATION -11
lynxeyed_atsu 0:d920d64db582 48 #define ERR_NO_MS_INTERFACE -12
lynxeyed_atsu 0:d920d64db582 49
lynxeyed_atsu 0:d920d64db582 50 /*
lynxeyed_atsu 0:d920d64db582 51 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 52 * FAT SPECIFIC ERROR CODES
lynxeyed_atsu 0:d920d64db582 53 **************************************************************************************************************
lynxeyed_atsu 0:d920d64db582 54 */
lynxeyed_atsu 0:d920d64db582 55
lynxeyed_atsu 0:d920d64db582 56 #define MATCH_NOT_FOUND -20
lynxeyed_atsu 0:d920d64db582 57 #define ERR_FAT_NOT_SUPPORTED -21
lynxeyed_atsu 0:d920d64db582 58 #define ERR_OPEN_LIMIT_REACHED -22
lynxeyed_atsu 0:d920d64db582 59 #define ERR_INVALID_BOOT_SIG -23
lynxeyed_atsu 0:d920d64db582 60 #define ERR_INVALID_BOOT_SEC -24
lynxeyed_atsu 0:d920d64db582 61 #define ERR_ROOT_DIR_FULL -25
lynxeyed_atsu 0:d920d64db582 62
lynxeyed_atsu 0:d920d64db582 63 #endif