Add single-channel capture mode

This commit is contained in:
kamil
2026-04-09 00:18:09 +03:00
parent b755d958f1
commit 95c7a5e2bd
3 changed files with 170 additions and 70 deletions

View File

@ -6,6 +6,7 @@
struct CapturePacket {
std::size_t packet_index = 0;
std::size_t channel_count = 2;
std::vector<double> ch1;
std::vector<double> ch2;
};