Add single-channel capture mode

This commit is contained in:
kamil
2026-04-09 00:18:09 +03:00
parent 05d42efb98
commit a1e7afc8a7
5 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;
};