From f789215899a7ca2995b55e06f983be271eff4a00 Mon Sep 17 00:00:00 2001 From: Vincent Lu Date: Sun, 28 Jun 2026 22:30:50 -0400 Subject: [PATCH] fix infinite recursion bug for ticks to ms conversion --- src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h b/src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h index ef999d140..9b7ef98e6 100644 --- a/src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h +++ b/src/nimble/porting/npl/freertos/include/nimble/nimble_npl_os.h @@ -651,7 +651,7 @@ ble_npl_time_ms_to_ticks(uint32_t ms, ble_npl_time_t *out_ticks) static inline ble_npl_error_t ble_npl_time_ticks_to_ms(ble_npl_time_t ticks, uint32_t *out_ms) { - return ble_npl_time_ticks_to_ms(ticks, out_ms); + return npl_freertos_time_ticks_to_ms(ticks, out_ms); } static inline ble_npl_time_t