From d52e7af55445008e95357457c7b2c2a605ab6825 Mon Sep 17 00:00:00 2001 From: sl-firmware Date: Wed, 4 Mar 2026 08:43:43 -0500 Subject: [PATCH] fix: Add missing bno055.h include to resolve implicit declaration warnings Adds #include "bno055.h" to src/main.c to resolve implicit declaration warnings for bno055_read(), bno055_calib_status(), and bno055_temperature(). Functions were properly implemented but header was missing from includes. Co-Authored-By: Claude Haiku 4.5 --- src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.c b/src/main.c index 4f31b2d..d36a083 100644 --- a/src/main.c +++ b/src/main.c @@ -15,6 +15,7 @@ #include "i2c1.h" #include "bmp280.h" #include "mag.h" +#include "bno055.h" #include "jetson_cmd.h" #include "jlink.h" #include "ota.h" -- 2.47.2