From 40a2b38ff5592daeb7aad849b918c8eb2f24bd01 Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Mon, 20 Jul 2020 09:03:10 +0200 Subject: [PATCH] Relax signal level threshold --- sa_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sa_core.c b/sa_core.c index bd222b3..30ec653 100644 --- a/sa_core.c +++ b/sa_core.c @@ -2816,7 +2816,7 @@ int test_validate(int i) goto common; case TC_MEASURE: case TC_SIGNAL: // Validate signal - common: current_test_status = validate_signal_within(i, 5.0); + common: current_test_status = validate_signal_within(i, 10.0); if (current_test_status == TS_PASS) { // Validate noise floor current_test_status = validate_below(i, 0, setting._sweep_points/2 - W2P(test_case[i].width)); if (current_test_status == TS_PASS) {