From c3cd8c3fbdffe9539bcf271e5169bda08addd803 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Wed, 6 May 2026 07:34:19 +0100 Subject: [PATCH] Corrects TX_TIMER_TICKS to be correct This caused socket timeouts when they shouldnt --- port/threadx/inc/tx_user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/threadx/inc/tx_user.h b/port/threadx/inc/tx_user.h index 113b751..29e8e38 100644 --- a/port/threadx/inc/tx_user.h +++ b/port/threadx/inc/tx_user.h @@ -125,7 +125,7 @@ version in tx_port.h or here. Note: the actual hardware timer value may need to be changed (usually in tx_initialize_low_level). */ -#define TX_TIMER_TICKS_PER_SECOND (100) // for moonlight with 32,7kHz Frequency (divided by 1000) +#define TX_TIMER_TICKS_PER_SECOND (1000) // for moonlight with 32,7kHz Frequency (divided by 1000) /* Determine if there is a FileX pointer in the thread control block. By default, the pointer is there for legacy/backwards compatibility.