]> sigrok.org Git - libsigrok.git/blame - src/hardware/conrad-digi-35-cpu/protocol.c
uni-t-ut181a: silence compiler warning, use of uninitialized variable
[libsigrok.git] / src / hardware / conrad-digi-35-cpu / protocol.c
CommitLineData
823b4e58
MH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 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
6ec6c43b 20#include <config.h>
823b4e58
MH
21#include "protocol.h"
22
0294a409
UH
23/**
24 * Send command with parameter.
c6a2843a 25 *
0294a409
UH
26 * @param[in] cmd Command
27 * @param[in] param Parameter (0..999, depending on command).
c6a2843a 28 *
0294a409
UH
29 * @retval SR_OK Success.
30 * @retval SR_ERR_ARG Invalid argument.
31 * @retval SR_ERR Error.
c6a2843a
MH
32 */
33SR_PRIV int send_msg1(const struct sr_dev_inst *sdi, char cmd, int param)
823b4e58 34{
c6a2843a
MH
35 struct sr_serial_dev_inst *serial;
36 char buf[5];
823b4e58 37
c6a2843a
MH
38 if (!sdi || !(serial = sdi->conn))
39 return SR_ERR_ARG;
823b4e58 40
c6a2843a
MH
41 snprintf(buf, sizeof(buf), "%c%03d", cmd, param);
42 buf[4] = '\r';
823b4e58 43
c6a2843a 44 sr_spew("send_msg1(): %c%c%c%c\\r", buf[0], buf[1], buf[2], buf[3]);
823b4e58 45
8b9eb639
UH
46 if (serial_write_blocking(serial, buf, sizeof(buf),
47 serial_timeout(serial, sizeof(buf))) < (int)sizeof(buf)) {
081c214e 48 sr_err("Write error for cmd=%c", cmd);
c6a2843a 49 return SR_ERR;
823b4e58 50 }
0294a409
UH
51
52 /*
53 * Wait 50ms to ensure that the device does not swallow any of the
54 * following commands.
55 */
1a46cc62 56 g_usleep(50 * 1000);
823b4e58 57
c6a2843a 58 return SR_OK;
823b4e58 59}