From 0b2230c5bc542dce880d9fd68c63b94e10b2c312 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Mon, 3 Aug 2020 11:33:50 +0200 Subject: [PATCH] Make calibration a bit faster --- libgram/src/calibration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgram/src/calibration.c b/libgram/src/calibration.c index 2f24113..2a7d8e8 100644 --- a/libgram/src/calibration.c +++ b/libgram/src/calibration.c @@ -95,7 +95,7 @@ int gram_generate_calibration(const struct gramCtx *ctx, struct gramProfile *pro } } - for (rdly = 0; rdly < 8; rdly++) { + for (rdly = min_rdly_p1; rdly < 8; rdly++) { profile->rdly_p1 = rdly; gram_load_calibration(ctx, profile); gram_reset_burstdet(ctx); -- 2.30.2