/* * This file is part of the libsigrok project. * * Copyright (C) 2012 Martin Ling * * 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 3 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, see . */ #include #include #include #include #include #include "libsigrok.h" #include "libsigrok-internal.h" #include "protocol.h" SR_PRIV int rigol_ds1xx2_receive_data(int fd, int revents, void *cb_data) { struct sr_dev_inst *sdi; struct dev_context *devc; struct sr_datafeed_packet packet; struct sr_datafeed_analog analog; unsigned char buf[WAVEFORM_SIZE]; float data[WAVEFORM_SIZE]; int len, i; if (!(sdi = cb_data)) return TRUE; if (!(devc = sdi->priv)) return TRUE; if (revents == G_IO_IN) { len = read(fd, buf, WAVEFORM_SIZE); sr_dbg("Received %d bytes.", len); if (len == -1) return TRUE; for (i = 0; i < len; i++) data[i] = devc->scale / 25.6 * (128 - buf[i]) - devc->offset; analog.probes = devc->enabled_probes; analog.num_samples = len; analog.data = data; analog.mq = SR_MQ_VOLTAGE; analog.unit = SR_UNIT_VOLT; analog.mqflags = 0; packet.type = SR_DF_ANALOG; packet.payload = &analog; sr_session_send(cb_data, &packet); if (++devc->num_frames == devc->limit_frames) sdi->driver->dev_acquisition_stop(sdi, cb_data); else rigol_ds1xx2_send_data(fd, ":WAV:DATA?\n"); } return TRUE; } SR_PRIV int rigol_ds1xx2_send_data(int fd, const char *format, ...) { va_list args; char buf[256]; int len; va_start(args, format); len = vsprintf(buf, format, args); va_end(args); len = write(fd, buf, len); sr_dbg("Sent '%s'.", buf); return len; }