blob: 69ee4d3ae5735204d09023ca52a172905e1dc98c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
// Error codes for the ApogeeUsb* files
#define APN_USB_SUCCESS 0
#define APN_USB_ERR_OPEN 1
#define APN_USB_ERR_READ 2
#define APN_USB_ERR_WRITE 3
#define APN_USB_ERR_IMAGE_DOWNLOAD 4
#define APN_USB_ERR_START_EXP 5
#define APN_USB_ERR_STOP_EXP 6
#define APN_USB_ERR_STATUS 7
#define APN_USB_ERR_RESET 8
|