/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
1
#ifndef _PCILIB_ERROR_H
2
#define _PCILIB_ERROR_H
3
 
4
enum {
5
    PCILIB_ERROR_SUCCESS = 0,
7.1.5 by Suren A. Chilingaryan
Support for FPGA registers
6
    PCILIB_ERROR_MEMORY,
17 by Suren A. Chilingaryan
Allow access to implementation context and provide call to set size of internal buffer for IPECamera
7
    PCILIB_ERROR_INVALID_REQUEST,
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
8
    PCILIB_ERROR_INVALID_ADDRESS,
7.1.2 by Suren A. Chilingaryan
Better handling of register banks
9
    PCILIB_ERROR_INVALID_BANK,
16 by Suren A. Chilingaryan
Prototype of IPECamera image protocol
10
    PCILIB_ERROR_INVALID_DATA,
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
11
    PCILIB_ERROR_TIMEOUT,
12
    PCILIB_ERROR_FAILED,
13
    PCILIB_ERROR_VERIFY,
14
    PCILIB_ERROR_NOTSUPPORTED,
15
    PCILIB_ERROR_NOTFOUND,
7.1.2 by Suren A. Chilingaryan
Better handling of register banks
16
    PCILIB_ERROR_OUTOFRANGE,
16 by Suren A. Chilingaryan
Prototype of IPECamera image protocol
17
    PCILIB_ERROR_NOTAVAILABLE,
15 by Suren A. Chilingaryan
Infrastructure for event API
18
    PCILIB_ERROR_NOTINITIALIZED
7.1.1 by Suren A. Chilingaryan
Initial support of IPECamera protocol
19
} pcilib_errot_t;
20
21
22
#endif /* _PCILIB_ERROR_H */