/*Includes ----------------------------------------------*/ #include "tool.h" #include "nrf_delay.h" #include "bsp_time.h" #include "exception.h" #include "system.h" #include "bll_imu.h" /*Private macro ------------------------------------------------------------------------------------------------------------------------------------*/ #define BLL_IMU_DATA_GROUP_NUM_MAX 12 //IMU能存储的最大数据组数 #define BLL_IMU_REGISTER_CONFIG_PARAM_MAX 12 //IMU能存储的最大数据组数 #define BLL_IMU_REGISTER_DATA_NOTIFY_MAX 5 //IMU能数据通知回调的最大数量 #define BLL_IMU_GET_MAX(a,b) (((a) > (b)) ? (a) : (b)) //对比大小宏 /*STRUCTION ------------------------------------------------------------------------------------------------------------------------------------*/ typedef struct bll_imu_data_notify { uint8_t priority; //优先级 bll_imu_data_notify_cb cb; //回调函数 }Bll_Imu_Data_Notify_t; typedef struct bll_imu { /*private member*/ const bll_imu_param_t *register_config_param[BLL_IMU_REGISTER_CONFIG_PARAM_MAX]; //已注册的IMU配置参数地址 Bll_Imu_Data_Notify_t register_data_notify[BLL_IMU_REGISTER_DATA_NOTIFY_MAX]; //已注册的IMU数据通知回调 bll_imu_one_way_param_t highest_priority_config_param[BLL_IMU_DIR_NUM]; //最高优先级配置IMU参数 BLL_IMU_CONFIG_RESULT config_result; //配置结果 } Bll_Imu_t; /*Local Variable ------------------------------------------------------------------------------------------------------------------------------------*/ static Bll_Imu_t ob_bll_imu; /*Local Functions ------------------------------------------------------------------------------------------------------------------------------------*/ static void bll_imu_register_config_cb(uint32_t conf_result) { if(conf_result == FML_IMU_CONFIG_FLOW_DONE) //配置成功 { ob_bll_imu.config_result = (BLL_IMU_CONFIG_FINISH); } else //配置失败 { if(conf_result >= 0x0D && conf_result <= 0x11) { ob_bll_imu.config_result = (BLL_IMU_CONFIG_FAIL_FRONT_MAG); //前脚mag配置失败 } else if(conf_result >= 0x1B && conf_result <= 0x1E) { ob_bll_imu.config_result = (BLL_IMU_CONFIG_FAIL_BACK_MAG); //后脚mag配置失败 } else { ob_bll_imu.config_result = (BLL_IMU_CONFIG_FAIL_FRONT_SIX_AXIS); //前脚lsm配置失败 } } } static void bll_imu_register_data_notify_cb(uint32_t dir_bit) { //从最高优先级开始筛选 for(int i=BLL_IMU_DATA_NOTIFY_CB_PRIORITY_NUM - 1; i >= 0; i--) { for(int j=0; j=BLL_IMU_DATA_NOTIFY_CB_PRIORITY_NUM)return -1; //若是已存在,更新优先级 for(int i=0; iconfig_param); if(ret == -1)return -1; } } // DEBUG_LOG("FRONT :fifo_odr :%d,acc_odr :%d,gry_odr :%d,mag_odr :%d,acc_fs :%d,gry_fs :%d,mag_fs :%d\n", // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].fifo_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].acc_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].gry_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].mag_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].acc_fs, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].gry_fs, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT].mag_fs // ); // // // DEBUG_LOG("BACK :fifo_odr :%d,acc_odr :%d,gry_odr :%d,mag_odr :%d,acc_fs :%d,gry_fs :%d,mag_fs :%d\n", // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].fifo_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].acc_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].gry_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].mag_odr, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].acc_fs, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].gry_fs, // ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK].mag_fs // ); //设置前脚要配置的参数 ret = fml_imu_config_param((FML_IMU_DIR_e)BLL_IMU_DIR_FRONT, &ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT]); if(ret == -1)return -1; //设置后脚要配置的参数 ret = fml_imu_config_param((FML_IMU_DIR_e)BLL_IMU_DIR_BACK, &ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK]); if(ret == -1)return -1; //注册配置回调函数 ret = fml_imu_register_config_callback(bll_imu_register_config_cb); if(ret == -1)return -1; //注册数据通知回调函数 ret = fml_imu_register_data_notify_callback(bll_imu_register_data_notify_cb); if(ret == -1)return -1; //开始配置IMU ret = fml_imu_start_config(); if(ret == 0) { //设置为配置中... ob_bll_imu.config_result = (BLL_IMU_CONFIG_DOING); } return 0; } /** @brief 查询IMU配置参数是否准备好 @param dir - [in] 方向 @param param - [in] 需要查询的IMU配置参数 @return 查询结果 - [out] BLL_IMU_CONFIG_RESULT */ BLL_IMU_CONFIG_RESULT bll_imu_query_config_param_is_ready(BLL_IMU_DIR_e dir, const bll_imu_param_t *param) { BLL_IMU_CONFIG_RESULT result; if(param == NULL || dir >= BLL_IMU_DIR_NUM) { result = (BLL_IMU_CONFIG_VAILERROR); return result; } const bll_imu_one_way_param_t *front_bll = param->config_param[BLL_IMU_DIR_FRONT]; const bll_imu_one_way_param_t *back_bll = param->config_param[BLL_IMU_DIR_BACK]; const bll_imu_one_way_param_t *highest_front_bll = &ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_FRONT]; const bll_imu_one_way_param_t *highest_back_bll = &ob_bll_imu.highest_priority_config_param[BLL_IMU_DIR_BACK]; //当前最高配置参数小于输入的配置参数 switch(dir) { case BLL_IMU_DIR_FRONT: //前脚 if(front_bll->acc_fs > highest_front_bll->acc_fs)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->acc_odr > highest_front_bll->acc_odr)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->acc_power_mode > highest_front_bll->acc_power_mode)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->fifo_odr > highest_front_bll->fifo_odr)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->gry_fs > highest_front_bll->gry_fs)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->gry_odr > highest_front_bll->gry_odr)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->gry_power_mode > highest_front_bll->gry_power_mode)return result = (BLL_IMU_CONFIG_VAILERROR); if(front_bll->mag_fs > highest_front_bll->mag_fs)return result = ( BLL_IMU_CONFIG_VAILERROR); if(front_bll->mag_odr > highest_front_bll->mag_odr)return result = ( BLL_IMU_CONFIG_VAILERROR); if(front_bll->timestamp_resolution > highest_front_bll->timestamp_resolution)return result = ( BLL_IMU_CONFIG_VAILERROR); if(front_bll->timestamp_switch > highest_front_bll->timestamp_switch)return result = ( BLL_IMU_CONFIG_VAILERROR); break; case BLL_IMU_DIR_BACK: //后脚 if(back_bll->acc_fs > highest_back_bll->acc_fs)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->acc_odr > highest_back_bll->acc_odr)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->acc_power_mode > highest_back_bll->acc_power_mode)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->fifo_odr > highest_back_bll->fifo_odr)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->gry_fs > highest_back_bll->gry_fs)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->gry_odr > highest_back_bll->gry_odr)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->gry_power_mode > highest_back_bll->gry_power_mode)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->mag_fs > highest_back_bll->mag_fs)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->mag_odr > highest_back_bll->mag_odr)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->timestamp_resolution > highest_back_bll->timestamp_resolution)return result = ( BLL_IMU_CONFIG_VAILERROR); if(back_bll->timestamp_switch > highest_back_bll->timestamp_switch)return result = ( BLL_IMU_CONFIG_VAILERROR); break; default: break; } result = ob_bll_imu.config_result; return result; } /** @brief 读取当前IMU数据的数量 @param dir - [in] 方向 @return 返回当前IMU数据的数量 */ int bll_imu_get_data_num(BLL_IMU_DIR_e dir) { return fml_imu_get_data_num((FML_IMU_DIR_e)dir); } /** @brief 获取当前IMU数据 @param dir - [in] 方向 @param index - [in] 数据索引 @param pdata - [out] 返回的IMU数据指针 @return 错误代码 - [out] -1失败,0成功 */ int bll_imu_get_data(BLL_IMU_DIR_e dir, int index, bll_imu_data_t *pdata) { return fml_imu_get_data((FML_IMU_DIR_e)dir, index, pdata); } /** @brief 关闭IMU @return 错误代码 - [out] -1失败,0成功 */ int bll_imu_close(void) { int ret; //断电前后脚 ret = fml_imu_close(FML_IMU_DIR_FRONT); if(ret == -1)return -1; ret = fml_imu_close(FML_IMU_DIR_BACK); if(ret == -1)return -1; //重置模式管理服务结构体 memset(&ob_bll_imu, 0, sizeof(ob_bll_imu)); //默认配置完成 ob_bll_imu.config_result = (BLL_IMU_CONFIG_FINISH); return 0; }