current_segment_id_ = 0;
segments_.clear();
+ for (const shared_ptr<decode::Decoder>& dec : stack_)
+ if (dec->has_logic_output())
+ output_logic_[dec->get_srd_decoder()]->clear();
+
logic_mux_data_.reset();
logic_mux_data_invalid_ = true;
if (!ch_exists) {
shared_ptr<Logic> logic_data = make_shared<Logic>(logic_channels.size());
- logic_data->set_samplerate(first_ch.samplerate);
+ logic_data->set_samplerate(get_samplerate());
output_logic_[dec->get_srd_decoder()] = logic_data;
shared_ptr<LogicSegment> logic_segment = make_shared<data::LogicSegment>(
- *logic_data, 0, (logic_data->num_channels() + 7) / 8, first_ch.samplerate);
+ *logic_data, 0, (logic_data->num_channels() + 7) / 8, get_samplerate());
logic_data->push_segment(logic_segment);
uint index = 0;
session_.add_generated_signal(signal);
index++;
}
+ } else {
+ shared_ptr<Logic> logic_data = output_logic_[dec->get_srd_decoder()];
+ logic_data->set_samplerate(get_samplerate());
+ for (shared_ptr<LogicSegment>& segment : logic_data->logic_segments())
+ segment->set_samplerate(get_samplerate());
}
}
}
// TODO Delete signals that no longer have a corresponding decoder (also from session)
- // TODO Check whether all sample rates are the same as the session's
+ // TODO Assert that all sample rates are the same as the session's
// TODO Set colors to the same as the decoder's background color
}
return;
}
+ // Update the samplerates for the output logic channels
+ update_output_signals();
+
// Create the session
srd_session_new(&srd_session_);
assert(srd_session_);
last_segment = dynamic_pointer_cast<LogicSegment>(segments.back());
else {
// Happens when the data was cleared - all segments are gone then
+ // segment_id is always 0 as it's the first segment
last_segment = make_shared<data::LogicSegment>(
*output_logic, 0, (output_logic->num_channels() + 7) / 8, output_logic->get_samplerate());
output_logic->push_segment(last_segment);
}
- last_segment->append_subsignal_payload(pdl->logic_class, (void*)pdl->data, pdl->size);
+ vector<uint8_t> data;
+ for (unsigned int i = pdata->start_sample; i < pdata->end_sample; i++)
+ data.emplace_back(*((uint8_t*)pdl->data));
+
+ last_segment->append_subsignal_payload(pdl->logic_class, data.data(), data.size());
- qInfo() << "Received" << pdl->size << "bytes /" << pdl->size \
- << "samples of logic output for class" << pdl->logic_class << "from decoder" \
- << QString::fromUtf8(decc->name);
+ qInfo() << "Received logic output state change for class" << pdl->logic_class << "from decoder" \
+ << QString::fromUtf8(decc->name) << "from" << pdata->start_sample << "to" << pdata->end_sample;
}
void DecodeSignal::on_capture_state_changed(int state)
void LogicSegment::append_subsignal_payload(unsigned int index, void *data, uint64_t data_size)
{
- static vector<uint8_t> merged_data; // Using static also places it on the heap
+ static vector<uint8_t> merged_data; // To preserve intermediate data across calls
- for (uint64_t i = 0; i < data_size * unit_size_; i++)
- merged_data.emplace_back(0);
+ if (index == 0)
+ for (uint64_t i = 0; i < data_size * unit_size_; i++)
+ merged_data.emplace_back(0);
// Set the bits for this sub-signal where needed
// Note: the bytes in *data must either be 0 or 1, nothing else
- unsigned int index_byte = index / 8;
+ unsigned int index_byte_offs = index / 8;
+ uint8_t* output_data = merged_data.data() + index_byte_offs;
+ uint8_t* input_data = (uint8_t*)data;
+
for (uint64_t i = 0; i < data_size; i++) {
- unsigned int offs = i * unit_size_ + index_byte;
- uint8_t* data_byte = merged_data.data() + offs;
- *data_byte |= *((uint8_t*)data + i) << index;
+ assert((i * unit_size_ + index_byte_offs) < merged_data.size());
+ *output_data |= (input_data[i] << index);
+ output_data += unit_size_;
}
if (index == owner_.num_channels() - 1) {