加入大疆C板例程bsp

This commit is contained in:
2026-04-12 20:34:47 +08:00
parent 7475077b9e
commit b68ac54a34
51 changed files with 5950 additions and 1290 deletions

View File

@@ -0,0 +1,49 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : INS_Task.h
* @brief : INS task
* @author : Yan Yuanbin
* @date : 2023/04/27
* @version : v1.0
******************************************************************************
* @attention : None
******************************************************************************
*/
/* USER CODE END Header */
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef INS_TASK_H
#define INS_TASK_H
/* Includes ------------------------------------------------------------------*/
#include "stdint.h"
/* Exported types ------------------------------------------------------------*/
/**
* @brief typedef structure that contains the information for the INS.
*/
typedef struct
{
float Pitch_Angle;
float Yaw_Angle;
float Yaw_TolAngle;
float Roll_Angle;
float Pitch_Gyro;
float Yaw_Gyro;
float Roll_Gyro;
float Angle[3];
float Gyro[3];
float Accel[3];
float Last_Yaw_Angle;
int16_t YawRoundCount;
}INS_Info_Typedef;
/* Externs---------------------------------------------------------*/
extern INS_Info_Typedef INS_Info;
#endif //INS_TASK_H