STM32H743/FML/motion_control.c
@@ -141,7 +141,7 @@
    float dist = mc_distance(pos, point);
    
    /* 定义"到达"阈值为0.5米 */
    const float REACH_THRESHOLD_M = 0.1f;
    const float REACH_THRESHOLD_M = 0.5f;
    
    return (dist < REACH_THRESHOLD_M) ? HIDO_TRUE : HIDO_FALSE;
}