From 01ef334a2480c9f906171b4e63b8163ff27b52b0 Mon Sep 17 00:00:00 2001 From: dvdgrgrtt Date: Tue, 8 Feb 2022 15:50:55 +0000 Subject: [PATCH] lib,phy: Fix thresholds in Viterbi test Under the NEON architecture, one of the BER thresholds was too tight. --- lib/src/phy/fec/convolutional/test/viterbi_test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/phy/fec/convolutional/test/viterbi_test.h b/lib/src/phy/fec/convolutional/test/viterbi_test.h index db8da02fd..a10a47a88 100644 --- a/lib/src/phy/fec/convolutional/test/viterbi_test.h +++ b/lib/src/phy/fec/convolutional/test/viterbi_test.h @@ -53,7 +53,7 @@ static expected_errors_t expected_errors[] = {{1000, 1, 40, true, 0.0, 7282}, {1000, 1, 56, true, 3.0, 176}, {1000, 1, 56, true, 4.5, 24}, - {100, 1, 1000, true, 0.0, 13208}, + {100, 1, 1000, true, 0.0, 16000}, {100, 1, 1000, true, 2.0, 939}, {100, 1, 1000, true, 3.0, 110}, {100, 1, 1000, true, 4.5, 5},