From: Soeren Apel Date: Sun, 21 May 2017 07:20:42 +0000 (+0200) Subject: Virtual session: rename num_channels to num_logic_channels X-Git-Tag: libsigrok-0.5.0~61 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=6fb5570b15a5566b9b3dc8814c728ed9edf4d828;p=libsigrok.git Virtual session: rename num_channels to num_logic_channels --- diff --git a/src/session_driver.c b/src/session_driver.c index 3a4aaa7a..285fa624 100644 --- a/src/session_driver.c +++ b/src/session_driver.c @@ -44,7 +44,7 @@ struct session_vdev { int bytes_read; uint64_t samplerate; int unitsize; - int num_channels; + int num_logic_channels; int num_analog_channels; int cur_analog_channel; GArray *analog_channels; @@ -117,7 +117,7 @@ static gboolean stream_session_data(struct sr_dev_inst *sdi) sr_dbg("Opened %s.", capturefile); } else if (vdev->cur_analog_channel < vdev->num_analog_channels) { vdev->capturefile = g_strdup_printf("analog-1-%d", - vdev->num_channels + vdev->cur_analog_channel + 1); + vdev->num_logic_channels + vdev->cur_analog_channel + 1); vdev->cur_analog_channel++; vdev->cur_chunk = 0; return TRUE; @@ -308,7 +308,7 @@ static int config_set(uint32_t key, GVariant *data, const struct sr_dev_inst *sd vdev->unitsize = g_variant_get_uint64(data); break; case SR_CONF_NUM_LOGIC_CHANNELS: - vdev->num_channels = g_variant_get_int32(data); + vdev->num_logic_channels = g_variant_get_int32(data); break; case SR_CONF_NUM_ANALOG_CHANNELS: vdev->num_analog_channels = g_variant_get_int32(data);