2024-11-14 02:21:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "stdio.h"
|
|
|
|
|
#include "BNO08x.hpp"
|
|
|
|
|
|
|
|
|
|
class BNO08xTestHelper
|
|
|
|
|
{
|
2024-11-14 09:36:28 +00:00
|
|
|
public:
|
|
|
|
|
static void set_test_imu(BNO08x *imu);
|
|
|
|
|
static BNO08x* get_test_imu();
|
|
|
|
|
private:
|
|
|
|
|
static BNO08x *test_imu;
|
2024-11-14 02:21:16 +00:00
|
|
|
};
|