From e94036d08d1248baffced26d8f023da429610d01 Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Mon, 2 Feb 2026 08:16:13 +0100 Subject: [PATCH] use 8 bit CRC --- tests/pac_list_regression_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pac_list_regression_test.cc b/tests/pac_list_regression_test.cc index 3985fa7..6abfc2e 100644 --- a/tests/pac_list_regression_test.cc +++ b/tests/pac_list_regression_test.cc @@ -25,13 +25,13 @@ int main() const int M = 7; const int N = 1 << M; const bool crc_aided = false; - CODE::CRC crc(0xD419CC15); - const int C = 32; + CODE::CRC crc(0xD9); + const int C = 8; #if 1 const int L = 64; typedef int8_t code_type; #else - const int L = 8; + const int L = 16; typedef float code_type; #endif