Subversion Repositories seema-scanner

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 jakw 1
/*****************************************************************************
2
 **             TEXAS INSTRUMENTS PROPRIETARY INFORMATION
3
 **
4
 **  (c) Copyright, Texas Instruments Incorporated, 2012-2013.
5
 **      All Rights Reserved.
6
 **
7
 **  Property of Texas Instruments Incorporated. Restricted Rights -
8
 **  Use, duplication, or disclosure is subject to restrictions set
9
 **  forth in TI's program license agreement and associated documentation.
10
 ******************************************************************************/
11
/**
12
 *
13
 * @file    Error.h
14
 *
15
 * @brief	Errors returned from the DM365 Commands
16
 **/
17
/*****************************************************************************/
18
 
19
#ifndef ERROR_H_
20
#define ERROR_H_
21
 
22
typedef enum
23
{
24
    SUCCESS = 0,
25
    FAIL,
26
    ERR_OUT_OF_RESOURCE,
27
    ERR_INVALID_PARAM,
28
    ERR_NULL_PTR,
29
    ERR_NOT_INITIALIZED,
30
    ERR_DEVICE_FAIL,
31
    ERR_DEVICE_BUSY,
32
    ERR_FORMAT_ERROR,
33
	ERR_TIMEOUT,
34
    ERR_NOT_SUPPORTED,
35
	ERR_NOT_FOUND
36
} ErrorCode_t;
37
 
38
 
39
#endif /* ERROR_H_ */