From 455316cfcdf58d2b2d428860a098d820e955dde8 Mon Sep 17 00:00:00 2001 From: hedger Date: Fri, 27 Oct 2023 22:52:41 +0400 Subject: [PATCH] furi: added math.h include for compatibility with existing apps --- furi/furi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/furi/furi.h b/furi/furi.h index cfdeb2c0f40..b1299c9a952 100644 --- a/furi/furi.h +++ b/furi/furi.h @@ -24,6 +24,9 @@ // FreeRTOS timer, REMOVE AFTER REFACTORING #include +// Workaround for math.h leaking through HAL in older versions +#include + #ifdef __cplusplus extern "C" { #endif