Files
QDAC-firmware/app/by_imu.h
2023-12-22 15:24:39 +08:00

15 lines
272 B
C

#ifndef _BY_IMU_H__
#define _BY_IMU_H__
#include "stdio.h"
#include "ch32v30x.h"
extern float imu_acc_x;
extern float imu_acc_y;
extern float imu_acc_z;
extern float imu_gyro_x;
extern float imu_gyro_y;
extern float imu_gyro_z;
extern void by_imu_data_get(void);
#endif