From 5b2e805c73d56e937a9ea5f657dc4b10f65ac624 Mon Sep 17 00:00:00 2001 From: Christian Zanon <105173223+xNovyz@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:02:34 +0100 Subject: [PATCH] Update start delay comment Signed-off-by: Christian Zanon <105173223+xNovyz@users.noreply.github.com> --- armsrc/iso14443b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso14443b.c b/armsrc/iso14443b.c index eed18eed4..6a70887d5 100644 --- a/armsrc/iso14443b.c +++ b/armsrc/iso14443b.c @@ -2927,7 +2927,7 @@ void ST25TB_TearOff(const uint8_t *data) { uint32_t last_consolidated_value = 0; uint32_t tear_off_value = 0; - // Start delay: user-specified or default 3000us (well within ~4ms EEPROM write window) + // Start delay: user-specified or default TEAROFF_INITIAL_DELAY_US (150 us) int tear_off_us = (start_time_us > 0) ? (int)start_time_us : TEAROFF_INITIAL_DELAY_US; if (tear_off_adjustment_us == 0) { tear_off_adjustment_us = TEAROFF_ADJUSTMENT_US_DEF;