]> sigrok.org Git - libsigrok.git/blame - src/hardware/brymen-dmm/protocol.h
brymen-dmm: style nits, apply comm param defaults, low battery warning
[libsigrok.git] / src / hardware / brymen-dmm / protocol.h
CommitLineData
20cbc785
AG
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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_BRYMEN_DMM_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_BRYMEN_DMM_PROTOCOL_H
22
23#include <stdint.h>
c5d6f5cc
UH
24#include <string.h>
25#include <stdlib.h>
26#include <math.h>
27#include <glib.h>
c1aae900 28#include <libsigrok/libsigrok.h>
20cbc785
AG
29#include "libsigrok-internal.h"
30
3544f848 31#define LOG_PREFIX "brymen-dmm"
20cbc785 32
601fb67c
AG
33#define DMM_BUFSIZE 256
34
35enum packet_len_status {
36 PACKET_HEADER_OK,
37 PACKET_NEED_MORE_DATA,
38 PACKET_INVALID_HEADER,
39};
40
20cbc785 41struct dev_context {
dcba0c41 42 struct sr_sw_limits sw_limits;
601fb67c
AG
43 uint8_t buf[DMM_BUFSIZE];
44 int bufoffset;
45 int buflen;
46 int next_packet_len;
20cbc785
AG
47};
48
601fb67c 49/**
c5d6f5cc 50 * Callback that assesses the size and status of the incoming packet.
601fb67c
AG
51 *
52 * @return PACKET_HEADER_OK - This is a proper packet header.
c5d6f5cc 53 * PACKET_NEED_MORE_DATA The buffer does not contain the entire header.
601fb67c
AG
54 * PACKET_INVALID_HEADER Not a valid start of packet.
55 */
56typedef int (*packet_length_t)(const uint8_t *buf, int *len);
57
20cbc785 58SR_PRIV int brymen_dmm_receive_data(int fd, int revents, void *cb_data);
601fb67c
AG
59SR_PRIV int brymen_packet_request(struct sr_serial_dev_inst *serial);
60
61SR_PRIV int brymen_packet_length(const uint8_t *buf, int *len);
62SR_PRIV gboolean brymen_packet_is_valid(const uint8_t *buf);
20cbc785 63
933e63a1 64SR_PRIV int brymen_parse(const uint8_t *buf, float *floatval,
1653c430 65 struct sr_datafeed_analog *analog, void *info);
8162cad7 66
601fb67c 67SR_PRIV int brymen_stream_detect(struct sr_serial_dev_inst *serial,
11addc89
GS
68 uint8_t *buf, size_t *buflen,
69 packet_length_t get_packet_size,
70 packet_valid_callback is_valid,
71 uint64_t timeout_ms, int baudrate);
c5d6f5cc 72
20cbc785 73#endif