feat:增加曝光調參

This commit is contained in:
2024-07-08 19:14:34 +08:00
parent dc874bf6f1
commit af031e23d8
6 changed files with 13 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ soft_iic_info_struct eeprom_param;
TYPE_UNION iic_buffer[DATA_IN_FLASH_NUM];
TYPE_UNION tiny_frame_param[20];
uint32_t *addre[2];
float auto_exp;
/**
* @brief 参数初始化注册
*
@@ -28,6 +29,7 @@ void jj_param_eeprom_init(void)
PARAM_REG(aim_straight, &straight_aim, EFLOAT, 1, "str:");
PARAM_REG(aim_turn, &turn_aim, EFLOAT, 1, "tur:");
PARAM_REG(baoguang, &FIX_BINTHRESHOLD, EFLOAT, 1, "bao:");
PARAM_REG(auto_exp_param, &auto_exp, EFLOAT, 1, "exp:");
jj_param_read(); // 注冊
}
/**