summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f295a5c)
raw | patch | inline | side by side (parent: f295a5c)
author | Bert Vermeulen <bert@biot.com> | |
Mon, 29 Jul 2013 23:03:00 +0000 (01:03 +0200) | ||
committer | Bert Vermeulen <bert@biot.com> | |
Tue, 30 Jul 2013 20:19:55 +0000 (22:19 +0200) |
src/sigrok.c | patch | blob | history |
diff --git a/src/sigrok.c b/src/sigrok.c
index d6900436128b47bfbd170142cfcc806bd96250ee..9dc8831781f067c9216c5084fcd1c3b1b82bfbe5 100644 (file)
--- a/src/sigrok.c
+++ b/src/sigrok.c
static pthread_t sr_thread;
static int sr_thread_running = FALSE;
GSList *config_devices;
-static struct sr_session *session = NULL;
static int num_devices;
static int loglevel = SR_LOG_WARN;
static struct sr_context *sr_ctx;
};
-static int cd_logger(void *cb_data, int msg_loglevel, const char *format,
- va_list args)
+static int sigrok_log_callback(void*cb_data __attribute__((unused)),
+ int msg_loglevel, const char *format, va_list args)
{
char s[512];
ERROR("malloc() failed.");
return 1;
}
- memset(cfdev, 0, sizeof(struct config_device));
+ memset(cfdev, 0, sizeof(*cfdev));
if (cf_util_get_string(ci, &cfdev->name)) {
+ free(cfdev);
WARNING("Invalid device name.");
return 1;
}
for (i = 0; i < ci->children_num; i++) {
item = ci->children + i;
if (item->values_num != 1) {
+ free(cfdev);
WARNING("Missing value for '%s'.", item->key);
return 1;
}
const struct sr_datafeed_analog *analog;
struct config_device *cfdev;
GSList *l;
- value_t *values;
+ value_t value;
value_list_t vl = VALUE_LIST_INIT;
- int num_probes, s, p;
-
- if (packet->type == SR_DF_END) {
- /* TODO: try to restart acquisition after a delay? */
- INFO("oops! ended");
- return;
- }
/* Find this device's configuration. */
cfdev = NULL;
return;
}
- if (packet->type == SR_DF_ANALOG) {
- if (cdtime() - cfdev->last_dispatch < cfdev->min_dispatch_interval)
- return;
-
- analog = packet->payload;
- num_probes = g_slist_length(analog->probes);
- if (!(values = malloc(sizeof(value_t) * num_probes))) {
- ERROR("malloc() failed.");
- return;
- }
- for (s = 0; s < analog->num_samples; s++) {
- for (p = 0; p < num_probes; p++) {
- values[s + p].gauge = analog->data[s + p];
- }
- }
- vl.values = values;
- vl.values_len = num_probes;
- sstrncpy(vl.host, hostname_g, sizeof(vl.host));
- sstrncpy(vl.plugin, "sigrok", sizeof(vl.plugin));
- ssnprintf(vl.plugin_instance, sizeof(vl.plugin_instance),
- "%s", cfdev->name);
- sstrncpy(vl.type, "gauge", sizeof(vl.type));
- plugin_dispatch_values(&vl);
-
- cfdev->last_dispatch = cdtime();
+ if (packet->type == SR_DF_END) {
+ /* TODO: try to restart acquisition after a delay? */
+ INFO("sigrok: acquisition for '%s' ended.", cfdev->name);
+ return;
}
+ if (packet->type != SR_DF_ANALOG)
+ return;
+
+ if (cdtime() - cfdev->last_dispatch < cfdev->min_dispatch_interval)
+ return;
+
+ /* Ignore all but the first sample on the first probe. */
+ analog = packet->payload;
+ value.gauge = analog->data[0];
+ vl.values = &value;
+ vl.values_len = 1;
+ sstrncpy(vl.host, hostname_g, sizeof(vl.host));
+ sstrncpy(vl.plugin, "sigrok", sizeof(vl.plugin));
+ ssnprintf(vl.plugin_instance, sizeof(vl.plugin_instance),
+ "%s", cfdev->name);
+ sstrncpy(vl.type, "gauge", sizeof(vl.type));
+ plugin_dispatch_values(&vl);
+
+ cfdev->last_dispatch = cdtime();
+
}
static int sigrok_init_driver(struct config_device *cfdev,
struct config_device *cfdev;
int ret, i;
- sr_log_callback_set(cd_logger, NULL);
+ sr_log_callback_set(sigrok_log_callback, NULL);
sr_log_loglevel_set(loglevel);
if ((ret = sr_init(&sr_ctx)) != SR_OK) {
return NULL;
}
- if (!(session = sr_session_new()))
+ if (!sr_session_new())
return NULL;
num_devices = 0;