summaryrefslogtreecommitdiff
path: root/src/sensors/dtp94/dtp94-enum.h
blob: 9c5f94968083c50a3e689964c35f57ff7b898195 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2013 Richard Hughes <richard@hughsie.com>
 *
 * Licensed under the GNU General Public License Version 2
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef __DTP94_ENUM_H
#define __DTP94_ENUM_H

#include <glib-object.h>

G_BEGIN_DECLS

#define DTP94_VENDOR_ID				0x0765
#define DTP94_PRODUCT_ID			0xd094

/* return values from the commands */
#define DTP94_RC_OK				0x00
#define DTP94_RC_BAD_COMMAND			0x01
#define DTP94_RC_PRM_RANGE			0x02
#define DTP94_RC_MEMORY_OVERFLOW		0x04
#define DTP94_RC_INVALID_BAUD_RATE		0x05
#define DTP94_RC_TIMEOUT			0x07
#define DTP94_RC_SYNTAX_ERROR			0x08
#define DTP94_RC_NO_DATA_AVAILABLE		0x0b
#define DTP94_RC_MISSING_PARAMETER		0x0c
#define DTP94_RC_CALIBRATION_DENIED		0x0d
#define DTP94_RC_NEEDS_OFFSET_CAL		0x16
#define DTP94_RC_NEEDS_RATIO_CAL		0x17
#define DTP94_RC_NEEDS_LUMINANCE_CAL		0x18
#define DTP94_RC_NEEDS_WHITE_POINT_CAL		0x19
#define DTP94_RC_NEEDS_BLACK_POINT_CAL		0x2a
#define DTP94_RC_INVALID_READING		0x20
#define DTP94_RC_BAD_COMP_TABLE			0x25
#define DTP94_RC_TOO_MUCH_LIGHT			0x28
#define DTP94_RC_NOT_ENOUGH_LIGHT		0x29
#define DTP94_RC_BAD_SERIAL_NUMBER		0x40
#define DTP94_RC_NO_MODULATION			0x50
#define DTP94_RC_EEPROM_FAILURE			0x70
#define DTP94_RC_FLASH_WRITE_FAILURE		0x71
#define DTP94_RC_INST_INTERNAL_ERROR		0x7f
#define DTP94_RC_UNKNOWN			0xff

guint8		 dtp94_rc_parse			(const guint8	*data,
						 gsize		 length);
const gchar	*dtp94_rc_to_string		(guint8		 value);

G_END_DECLS

#endif /* __DTP94_ENUM_H */