123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619 |
- /*
- * This file is part of the libsigrok project.
- *
- * Copyright (C) 2013, 2014 Matthias Heidbrink <m-sigrok@heidbrink.biz>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- /** @file
- * Gossen Metrawatt Metrahit 1x/2x drivers
- * @internal
- */
- #include <string.h>
- #include "protocol.h"
- /* Serial communication parameters for Metrahit 1x/2x with 'RS232' adaptor */
- #define SERIALCOMM_1X_RS232 "8228/6n1/dtr=1/rts=1/flow=0" /* =8192, closer with divider */
- #define SERIALCOMM_2X_RS232 "9600/6n1/dtr=1/rts=1/flow=0"
- #define SERIALCOMM_2X "9600/8n1/dtr=1/rts=1/flow=0"
- #define VENDOR_GMC "Gossen Metrawatt"
- SR_PRIV struct sr_dev_driver gmc_mh_1x_2x_rs232_driver_info;
- SR_PRIV struct sr_dev_driver gmc_mh_2x_bd232_driver_info;
- static const int32_t hwopts[] = {
- SR_CONF_CONN,
- SR_CONF_SERIALCOMM,
- };
- /** Hardware capabilities for Metrahit 1x/2x devices in send mode. */
- static const int32_t hwcaps_sm[] = {
- SR_CONF_MULTIMETER,
- SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
- SR_CONF_LIMIT_SAMPLES,
- SR_CONF_LIMIT_MSEC,
- SR_CONF_CONTINUOUS,
- };
- /** Hardware capabilities for Metrahit 2x devices in bidirectional Mode. */
- static const int32_t hwcaps_bd[] = {
- SR_CONF_MULTIMETER,
- SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
- SR_CONF_LIMIT_SAMPLES,
- SR_CONF_LIMIT_MSEC,
- SR_CONF_CONTINUOUS,
- SR_CONF_POWER_OFF,
- };
- /* TODO:
- * - For the 29S SR_CONF_ENERGYMETER, too.
- * - SR_CONF_PATTERN_MODE for some 2x devices
- * - SR_CONF_DATALOG for 22M, 26M, 29S and storage adaptors.
- * Need to implement device-specific lists.
- */
- /** Init driver gmc_mh_1x_2x_rs232. */
- static int init_1x_2x_rs232(struct sr_context *sr_ctx)
- {
- return std_init(sr_ctx, &gmc_mh_1x_2x_rs232_driver_info, LOG_PREFIX);
- }
- /** Init driver gmc_mh_2x_bd232. */
- static int init_2x_bd232(struct sr_context *sr_ctx)
- {
- return std_init(sr_ctx, &gmc_mh_2x_bd232_driver_info, LOG_PREFIX);
- }
- /**
- * Read single byte from serial port.
- *
- * @retval -1 Timeout or error.
- * @retval other Byte.
- */
- static int read_byte(struct sr_serial_dev_inst *serial, gint64 timeout)
- {
- uint8_t result = 0;
- int rc = 0;
- for (;;) {
- rc = serial_read(serial, &result, 1);
- if (rc == 1) {
- sr_spew("read: 0x%02x/%d", result, result);
- return result;
- }
- if (g_get_monotonic_time() > timeout)
- return -1;
- g_usleep(2000);
- }
- }
- /**
- * Try to detect GMC 1x/2x multimeter model in send mode for max. 1 second.
- *
- * @param serial Configured, open serial port.
- *
- * @retval NULL Detection failed.
- * @retval other Model code.
- */
- static enum model scan_model_sm(struct sr_serial_dev_inst *serial)
- {
- int byte, bytecnt, cnt;
- enum model model;
- gint64 timeout_us;
- model = METRAHIT_NONE;
- timeout_us = g_get_monotonic_time() + 1 * 1000 * 1000;
- /*
- * Try to find message consisting of device code and several
- * (at least 4) data bytes.
- */
- for (bytecnt = 0; bytecnt < 100; bytecnt++) {
- byte = read_byte(serial, timeout_us);
- if ((byte == -1) || (timeout_us < g_get_monotonic_time()))
- break;
- if ((byte & MSGID_MASK) == MSGID_INF) {
- if (!(model = gmc_decode_model_sm(byte & MSGC_MASK)))
- break;
- /* Now expect (at least) 4 data bytes. */
- for (cnt = 0; cnt < 4; cnt++) {
- byte = read_byte(serial, timeout_us);
- if ((byte == -1) ||
- ((byte & MSGID_MASK) != MSGID_DATA))
- {
- model = METRAHIT_NONE;
- bytecnt = 100;
- break;
- }
- }
- break;
- }
- }
- return model;
- }
- /**
- * Scan for Metrahit 1x and Metrahit 2x in send mode using Gossen Metrawatt
- * 'RS232' interface.
- *
- * The older 1x models use 8192 baud and the newer 2x 9600 baud.
- * The DMM usually sends up to about 20 messages per second. However, depending
- * on configuration and measurement mode the intervals can be much larger and
- * then the detection might not work.
- */
- static GSList *scan_1x_2x_rs232(GSList *options)
- {
- struct sr_dev_inst *sdi;
- struct drv_context *drvc;
- struct dev_context *devc;
- struct sr_config *src;
- struct sr_channel *ch;
- struct sr_serial_dev_inst *serial;
- GSList *l, *devices;
- const char *conn, *serialcomm;
- enum model model;
- gboolean serialcomm_given;
- devices = NULL;
- drvc = (&gmc_mh_1x_2x_rs232_driver_info)->priv;
- drvc->instances = NULL;
- conn = serialcomm = NULL;
- model = METRAHIT_NONE;
- serialcomm_given = FALSE;
- sr_spew("scan_1x_2x_rs232() called!");
- for (l = options; l; l = l->next) {
- src = l->data;
- switch (src->key) {
- case SR_CONF_CONN:
- conn = g_variant_get_string(src->data, NULL);
- break;
- case SR_CONF_SERIALCOMM:
- serialcomm = g_variant_get_string(src->data, NULL);
- serialcomm_given = TRUE;
- break;
- }
- }
- if (!conn)
- return NULL;
- if (!serialcomm)
- serialcomm = SERIALCOMM_2X_RS232;
- if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
- return NULL;
- if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK) {
- sr_serial_dev_inst_free(serial);
- return NULL;
- }
- serial_flush(serial);
- model = scan_model_sm(serial);
- /*
- * If detection failed and no user-supplied parameters,
- * try second baud rate.
- */
- if ((model == METRAHIT_NONE) && !serialcomm_given) {
- serialcomm = SERIALCOMM_1X_RS232;
- g_free(serial->serialcomm);
- serial->serialcomm = g_strdup(serialcomm);
- if (serial_set_paramstr(serial, serialcomm) == SR_OK) {
- serial_flush(serial);
- model = scan_model_sm(serial);
- }
- }
- if (model != METRAHIT_NONE) {
- sr_spew("%s %s detected!", VENDOR_GMC, gmc_model_str(model));
- if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, VENDOR_GMC,
- gmc_model_str(model), NULL)))
- return NULL;
- if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
- sr_err("Device context malloc failed.");
- return NULL;
- }
- devc->model = model;
- devc->limit_samples = 0;
- devc->limit_msec = 0;
- devc->num_samples = 0;
- devc->elapsed_msec = g_timer_new();
- devc->settings_ok = FALSE;
- sdi->conn = serial;
- sdi->priv = devc;
- sdi->driver = &gmc_mh_1x_2x_rs232_driver_info;
- if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1")))
- return NULL;
- sdi->channels = g_slist_append(sdi->channels, ch);
- drvc->instances = g_slist_append(drvc->instances, sdi);
- devices = g_slist_append(devices, sdi);
- }
- return devices;
- }
- /** Scan for Metrahit 2x in a bidirectional mode using Gossen Metrawatt 'BD 232' interface.
- *
- */
- static GSList *scan_2x_bd232(GSList *options)
- {
- struct sr_dev_inst *sdi;
- struct drv_context *drvc;
- struct dev_context *devc;
- struct sr_config *src;
- struct sr_channel *ch;
- struct sr_serial_dev_inst *serial;
- GSList *l, *devices;
- const char *conn, *serialcomm;
- int cnt, byte;
- gint64 timeout_us;
- sdi = NULL;
- devc = NULL;
- conn = serialcomm = NULL;
- devices = NULL;
- drvc = (&gmc_mh_2x_bd232_driver_info)->priv;
- drvc->instances = NULL;
- sr_spew("scan_2x_bd232() called!");
- for (l = options; l; l = l->next) {
- src = l->data;
- switch (src->key) {
- case SR_CONF_CONN:
- conn = g_variant_get_string(src->data, NULL);
- break;
- case SR_CONF_SERIALCOMM:
- serialcomm = g_variant_get_string(src->data, NULL);
- break;
- }
- }
- if (!conn)
- return NULL;
- if (!serialcomm)
- serialcomm = SERIALCOMM_2X;
- if (!(serial = sr_serial_dev_inst_new(conn, serialcomm)))
- return NULL;
- if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
- goto exit_err;
- if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
- sr_err("Device context malloc failed.");
- goto exit_err;
- }
- if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, VENDOR_GMC, NULL, NULL)))
- goto exit_err;
- sdi->priv = devc;
- /* Send message 03 "Query multimeter version and status" */
- sdi->conn = serial;
- sdi->priv = devc;
- if (req_stat14(sdi, TRUE) != SR_OK)
- goto exit_err;
- /* Wait for reply from device(s) for up to 2s. */
- timeout_us = g_get_monotonic_time() + 2*1000*1000;
- while (timeout_us > g_get_monotonic_time()) {
- /* Receive reply (14 bytes) */
- devc->buflen = 0;
- for (cnt = 0; cnt < 14; cnt++) {
- byte = read_byte(serial, timeout_us);
- if (byte != -1)
- devc->buf[devc->buflen++] = (byte & MASK_6BITS);
- }
- if (devc->buflen != 14)
- continue;
- devc->addr = devc->buf[0];
- process_msg14(sdi);
- devc->buflen = 0;
- if (devc->model != METRAHIT_NONE) {
- sr_spew("%s %s detected!", VENDOR_GMC, gmc_model_str(devc->model));
- devc->elapsed_msec = g_timer_new();
- sdi->model = g_strdup(gmc_model_str(devc->model));
- sdi->version = g_strdup_printf("Firmware %d.%d", devc->fw_ver_maj, devc->fw_ver_min);
- sdi->conn = serial;
- sdi->priv = devc;
- sdi->driver = &gmc_mh_2x_bd232_driver_info;
- if (!(ch = sr_channel_new(0, SR_CHANNEL_ANALOG, TRUE, "P1")))
- goto exit_err;
- sdi->channels = g_slist_append(sdi->channels, ch);
- drvc->instances = g_slist_append(drvc->instances, sdi);
- devices = g_slist_append(devices, sdi);
- if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
- sr_err("Device context malloc failed.");
- goto exit_err;
- }
- if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE, VENDOR_GMC, NULL, NULL)))
- goto exit_err;
- }
- };
- /* Free last alloc if no device found */
- if (devc->model == METRAHIT_NONE) {
- g_free(devc);
- sr_dev_inst_free(sdi);
- }
- return devices;
- exit_err:
- sr_info("scan_2x_bd232(): Error!");
- if (serial)
- sr_serial_dev_inst_free(serial);
- if (devc)
- g_free(devc);
- if (sdi)
- sr_dev_inst_free(sdi);
- return NULL;
- }
- /** Driver device list function */
- static GSList *dev_list_1x_2x_rs232(void)
- {
- return ((struct drv_context *)(gmc_mh_1x_2x_rs232_driver_info.priv))->instances;
- }
- /** Driver device list function */
- static GSList *dev_list_2x_bd232(void)
- {
- return ((struct drv_context *)(gmc_mh_2x_bd232_driver_info.priv))
- ->instances;
- }
- static int dev_close(struct sr_dev_inst *sdi)
- {
- struct dev_context *devc;
- std_serial_dev_close(sdi);
- sdi->status = SR_ST_INACTIVE;
- /* Free dynamically allocated resources. */
- if ((devc = sdi->priv) && devc->elapsed_msec) {
- g_timer_destroy(devc->elapsed_msec);
- devc->elapsed_msec = NULL;
- devc->model = METRAHIT_NONE;
- }
- return SR_OK;
- }
- static int cleanup_sm_rs232(void)
- {
- return std_dev_clear(&gmc_mh_1x_2x_rs232_driver_info, NULL);
- }
- static int cleanup_2x_bd232(void)
- {
- return std_dev_clear(&gmc_mh_2x_bd232_driver_info, NULL);
- }
- /** Get value of configuration item */
- static int config_get(int key, GVariant **data, const struct sr_dev_inst *sdi,
- const struct sr_channel_group *cg)
- {
- int ret;
- struct dev_context *devc;
- (void)cg;
- ret = SR_OK;
- if (!sdi || !(devc = sdi->priv))
- return SR_ERR_ARG;
- ret = SR_OK;
- switch (key) {
- case SR_CONF_LIMIT_SAMPLES:
- *data = g_variant_new_uint64(devc->limit_samples);
- break;
- case SR_CONF_LIMIT_MSEC:
- *data = g_variant_new_uint64(devc->limit_msec);
- break;
- case SR_CONF_POWER_OFF:
- *data = g_variant_new_boolean(FALSE);
- break;
- default:
- return SR_ERR_NA;
- }
- return ret;
- }
- /** Implementation of config_list, auxiliary function for common parts, */
- static int config_list_common(int key, GVariant **data, const struct sr_dev_inst *sdi,
- const struct sr_channel_group *cg)
- {
- (void)sdi;
- (void)cg;
- switch (key) {
- case SR_CONF_SCAN_OPTIONS:
- *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
- hwopts, ARRAY_SIZE(hwopts), sizeof(int32_t));
- break;
- default:
- return SR_ERR_NA;
- }
- return SR_OK;
- }
- /** Implementation of config_list for Metrahit 1x/2x send mode */
- static int config_list_sm(int key, GVariant **data, const struct sr_dev_inst *sdi,
- const struct sr_channel_group *cg)
- {
- switch (key) {
- case SR_CONF_DEVICE_OPTIONS:
- *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
- hwcaps_sm, ARRAY_SIZE(hwcaps_sm), sizeof(int32_t));
- break;
- default:
- return config_list_common(key, data, sdi, cg);
- }
- return SR_OK;
- }
- /** Implementation of config_list for Metrahit 2x bidirectional mode */
- static int config_list_bd(int key, GVariant **data, const struct sr_dev_inst *sdi,
- const struct sr_channel_group *cg)
- {
- switch (key) {
- case SR_CONF_DEVICE_OPTIONS:
- *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
- hwcaps_bd, ARRAY_SIZE(hwcaps_bd), sizeof(int32_t));
- break;
- default:
- return config_list_common(key, data, sdi, cg);
- }
- return SR_OK;
- }
- static int dev_acquisition_start_1x_2x_rs232(const struct sr_dev_inst *sdi,
- void *cb_data)
- {
- struct dev_context *devc;
- struct sr_serial_dev_inst *serial;
- if (!sdi || !cb_data || !(devc = sdi->priv))
- return SR_ERR_BUG;
- if (sdi->status != SR_ST_ACTIVE)
- return SR_ERR_DEV_CLOSED;
- devc->cb_data = cb_data;
- devc->settings_ok = FALSE;
- devc->buflen = 0;
- /* Send header packet to the session bus. */
- std_session_send_df_header(cb_data, LOG_PREFIX);
- /* Start timer, if required. */
- if (devc->limit_msec)
- g_timer_start(devc->elapsed_msec);
- /* Poll every 40ms, or whenever some data comes in. */
- serial = sdi->conn;
- serial_source_add(serial, G_IO_IN, 40, gmc_mh_1x_2x_receive_data,
- (void *)sdi);
- return SR_OK;
- }
- static int dev_acquisition_start_2x_bd232(const struct sr_dev_inst *sdi,
- void *cb_data)
- {
- struct dev_context *devc;
- struct sr_serial_dev_inst *serial;
- if (!sdi || !cb_data || !(devc = sdi->priv))
- return SR_ERR_BUG;
- if (sdi->status != SR_ST_ACTIVE)
- return SR_ERR_DEV_CLOSED;
- devc->cb_data = cb_data;
- devc->settings_ok = FALSE;
- devc->buflen = 0;
- /* Send header packet to the session bus. */
- std_session_send_df_header(cb_data, LOG_PREFIX);
- /* Start timer, if required. */
- if (devc->limit_msec)
- g_timer_start(devc->elapsed_msec);
- /* Poll every 40ms, or whenever some data comes in. */
- serial = sdi->conn;
- serial_source_add(serial, G_IO_IN, 40, gmc_mh_2x_receive_data,
- (void *)sdi);
- /* Send start message */
- return req_meas14(sdi);
- }
- static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
- {
- struct dev_context *devc;
- /* Stop timer, if required. */
- if (sdi && (devc = sdi->priv) && devc->limit_msec)
- g_timer_stop(devc->elapsed_msec);
- return std_serial_dev_acquisition_stop(sdi, cb_data, dev_close,
- sdi->conn, LOG_PREFIX);
- }
- SR_PRIV struct sr_dev_driver gmc_mh_1x_2x_rs232_driver_info = {
- .name = "gmc-mh-1x-2x-rs232",
- .longname = "Gossen Metrawatt Metrahit 1x/2x, RS232 interface",
- .api_version = 1,
- .init = init_1x_2x_rs232,
- .cleanup = cleanup_sm_rs232,
- .scan = scan_1x_2x_rs232,
- .dev_list = dev_list_1x_2x_rs232,
- .dev_clear = NULL,
- .config_get = config_get,
- .config_set = config_set,
- .config_list = config_list_sm,
- .dev_open = std_serial_dev_open,
- .dev_close = dev_close,
- .dev_acquisition_start = dev_acquisition_start_1x_2x_rs232,
- .dev_acquisition_stop = dev_acquisition_stop,
- .priv = NULL,
- };
- SR_PRIV struct sr_dev_driver gmc_mh_2x_bd232_driver_info = {
- .name = "gmc-mh-2x-bd232",
- .longname = "Gossen Metrawatt Metrahit 2x, BD232/SI232-II interface",
- .api_version = 1,
- .init = init_2x_bd232,
- .cleanup = cleanup_2x_bd232,
- .scan = scan_2x_bd232,
- .dev_list = dev_list_2x_bd232,
- .dev_clear = NULL,
- .config_get = config_get,
- .config_set = config_set,
- .config_list = config_list_bd,
- .dev_open = std_serial_dev_open,
- .dev_close = dev_close,
- .dev_acquisition_start = dev_acquisition_start_2x_bd232,
- .dev_acquisition_stop = dev_acquisition_stop,
- .priv = NULL,
- };
|