added raw data plugin

This commit is contained in:
2026-02-22 15:29:54 +03:00
parent e1641eb810
commit 1a78330ad6
3 changed files with 28 additions and 7 deletions

View File

@@ -14,10 +14,10 @@ auto main() -> int
auto r = hr::run<hr::plugins::raw_data>(setup);
hack::log()("size:", r.m_data.size());
if (!r.empty())
{
std::vector<float> s;
for (auto p : r.m_data) s.push_back(p.m_value[0]);
hack::log()(s);
}
// if (!r.empty())
// {
// std::vector<float> s;
// for (auto p : r.m_data) s.push_back(p.m_value[0]);
// hack::log()(s);
// }
}