Waterfall chart to capture history of detections

This commit is contained in:
Sassa NF
2024-09-30 07:36:36 +01:00
parent 30883386c4
commit ad7ad3d8af
8 changed files with 524 additions and 19 deletions
-14
View File
@@ -3,10 +3,6 @@
#include "../lib/scan/scan.cpp"
#include <unity.h>
void setUp(void) {}
void tearDown(void) {}
struct TestScan : Scan
{
TestScan(float *ctx, int sz) : ctx(ctx), sz(sz), idx(0) {}
@@ -66,13 +62,3 @@ void test_detect()
TEST_ASSERT_EQUAL_INT16(1, r);
TEST_ASSERT_EQUAL_INT8_ARRAY(expect2, result, test_sz);
}
int main(int argc, char **argv)
{
UNITY_BEGIN();
RUN_TEST(test_rssi);
RUN_TEST(test_detect);
UNITY_END();
}