R2_UP/User/Module/config.h

38 lines
431 B
C

#ifndef _CONFIG_H
#define _CONFIG_H
#include "can_use.h"
#include "ahrs.h"
#include "map.h"
#include "up.h"
typedef struct{
UP_Param_t up;
CAN_Params_t can;
AHRS_Eulr_t mech_zero[4];
}ConfigParam_t;
typedef struct{
const ConfigParam_t *chassis_config;
BMI088_Cali_t cali_088;
}Config_t;
void Config_Get(Config_t *cfg);
void Config_Set(Config_t *cfg);
extern const ConfigParam_t *Config_ChassisGet(void);
#endif