Compare commits

..

2 Commits

Author SHA1 Message Date
985e03a26d Merge pull request 'fix: add missing bno055.h include in main.c' (#387) from sl-firmware/fix-bno055-include into main 2026-03-04 09:54:56 -05:00
d52e7af554 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 <noreply@anthropic.com>
2026-03-04 08:45:51 -05:00

View File

@ -15,6 +15,7 @@
#include "i2c1.h" #include "i2c1.h"
#include "bmp280.h" #include "bmp280.h"
#include "mag.h" #include "mag.h"
#include "bno055.h"
#include "jetson_cmd.h" #include "jetson_cmd.h"
#include "jlink.h" #include "jlink.h"
#include "ota.h" #include "ota.h"