]> sigrok.org Git - libsigrok.git/blame - hardware/conrad-digi-35-cpu/protocol.c
conrad-digi-35-cpu: Implemented driver.
[libsigrok.git] / 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
c6a2843a
MH
20/** @file
21 * <em>Conrad DIGI 35 CPU</em> power supply driver
22 * @internal
23 */
24
823b4e58
MH
25#include "protocol.h"
26
c6a2843a
MH
27#include <errno.h>
28#include <string.h>
29
30/** Send command with parameter.
31 *
32 * @param[in] cmd Command
33 * @param[in] param Parameter (0..999, depending on command).
34 *
35 * @retval SR_OK Success
36 * @retval SR_ERR_ARG Invalid argument.
37 * @retval SR_ERR Error.
38 */
39SR_PRIV int send_msg1(const struct sr_dev_inst *sdi, char cmd, int param)
823b4e58 40{
c6a2843a
MH
41 struct sr_serial_dev_inst *serial;
42 char buf[5];
823b4e58 43
c6a2843a
MH
44 if (!sdi || !(serial = sdi->conn))
45 return SR_ERR_ARG;
823b4e58 46
c6a2843a
MH
47 snprintf(buf, sizeof(buf), "%c%03d", cmd, param);
48 buf[4] = '\r';
823b4e58 49
c6a2843a 50 sr_spew("send_msg1(): %c%c%c%c\\r", buf[0], buf[1], buf[2], buf[3]);
823b4e58 51
c6a2843a
MH
52 if (serial_write(serial, buf, sizeof(buf)) == -1) {
53 sr_err("Write error for cmd=%c: %d %s", cmd, errno, strerror(errno));
54 return SR_ERR;
823b4e58 55 }
c6a2843a 56 g_usleep(50000); /* Wait 50 ms to ensure that the device does not swallow following commands. */
823b4e58 57
c6a2843a 58 return SR_OK;
823b4e58 59}