]> sigrok.org Git - libsigrok.git/blame - src/hardware/norma-dmm/protocol.h
sr_dev_close(): Factor out SR_ERR_DEV_CLOSED check.
[libsigrok.git] / src / hardware / norma-dmm / protocol.h
CommitLineData
bfd48770
MH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBSIGROK_HARDWARE_NORMA_DMM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_NORMA_DMM_PROTOCOL_H
22
23#include <stdint.h>
e790bd5c
UH
24#include <string.h>
25#include <ctype.h>
e790bd5c 26#include <math.h>
bfd48770 27#include <glib.h>
c1aae900 28#include <libsigrok/libsigrok.h>
bfd48770
MH
29#include "libsigrok-internal.h"
30
d9251a2c
UH
31/**
32 * @file
33 *
34 * Norma DM9x0/Siemens B102x DMMs driver.
35 *
36 * @internal
a4e435eb
MH
37 */
38
3544f848 39#define LOG_PREFIX "norma-dmm"
bfd48770 40
d9251a2c 41#define NMADMM_BUFSIZE 256
f8e76e2e 42
a4e435eb
MH
43#define NMADMM_TIMEOUT_MS 2000 /**< Request timeout. */
44
e790bd5c
UH
45/** Norma DMM request types (used ones only, the DMMs support about 50). */
46enum {
f8e76e2e
MH
47 NMADMM_REQ_IDN = 0, /**< Request identity */
48 NMADMM_REQ_STATUS, /**< Request device status (value + ...) */
49};
50
51/** Defines requests used to communicate with device. */
52struct nmadmm_req {
e790bd5c
UH
53 int req_type; /**< Request type. */
54 const char *req_str; /**< Request string. */
f8e76e2e
MH
55};
56
57/** Strings for requests. */
58extern const struct nmadmm_req nmadmm_requests[];
59
bfd48770
MH
60/** Private, per-device-instance driver context. */
61struct dev_context {
62 /* Model-specific information */
e790bd5c
UH
63 int type; /**< DM9x0, e.g. 5 = DM950 */
64
bfd48770 65 /* Acquisition settings */
37dbffd1 66 struct sr_sw_limits limits;
bfd48770 67
f8e76e2e 68 /* Operational state */
e790bd5c 69 int last_req; /**< Last request. */
a4e435eb 70 int64_t req_sent_at; /**< Request sent. */
e790bd5c
UH
71 gboolean last_req_pending; /**< Last request not answered yet. */
72 int lowbatt; /**< Low battery. 1=low, 2=critical. */
73
bfd48770 74 /* Temporary state across callbacks */
e790bd5c 75 uint8_t buf[NMADMM_BUFSIZE]; /**< Buffer for read callback */
f8e76e2e 76 int buflen; /**< Data len in buf */
bfd48770
MH
77};
78
79SR_PRIV int norma_dmm_receive_data(int fd, int revents, void *cb_data);
f8e76e2e 80SR_PRIV int xgittoint(char xgit);
bfd48770
MH
81
82#endif