]> rtime.felk.cvut.cz Git - eurobot/public.git/blobdiff - src/robofsm/common-states.cc
Odometry autocalibration
[eurobot/public.git] / src / robofsm / common-states.cc
index 970e9eda8e1b0c953306f1c2b3f938af092ecd1b..f0b910d8dbb21057d8ffbc74a84792e9034fa2d3 100644 (file)
@@ -434,23 +434,25 @@ FSM_STATE(go_back_for_cal)
                        robot_set_est_pos_trans(ROBOT_AXIS_TO_BACK_M + 1.0,
                                                PLAYGROUND_HEIGHT_M - (ROBOT_WIDTH_M/2.0),
                                                0);
-                       robot_move_by(-1.1, NO_TURN(), &tcSlow);
-                       FSM_TIMER(500);
+                       robot_move_by(-1.1, NO_TURN(), &tcVerySlow);
+                       FSM_TIMER(200);
                        break;
                case EV_MOTION_DONE:
                        ROBOT_LOCK(est_pos_odo);
-                       robot.odo_cal_a = 1/robot.odo_distance_a;
-                       robot.odo_cal_b = 1/robot.odo_distance_b;
+                       robot.odo_cal_a = -1.0/robot.odo_distance_a;
+                       robot.odo_cal_b = -1.0/robot.odo_distance_b;
                        x1 = robot.odo_distance_a;
                        y1 = robot.odo_distance_b;
                        ROBOT_UNLOCK(est_pos_odo);
-                       printf("EROOR%f", x1);
+                       printf("Distance for calibration: \n");
+                       printf("Left%f\n", x1);
+                       printf("Right%f\n", y1);
                        FILE * file;
                        file = fopen ("odometry_cal_data","a+");
-                       sprintf(buffer, "%4.4f", 1/x1);
+                       sprintf(buffer, "%4.4f", -1/x1);
                        fputs (buffer,file);
                        fputs ("\n", file);
-                       sprintf(buffer, "%4.4f", 1/y1);
+                       sprintf(buffer, "%4.4f", -1/y1);
                        fputs (buffer,file);
                        fclose(file);
                        SUBFSM_RET(NULL);
@@ -463,7 +465,7 @@ FSM_STATE(go_back_for_cal)
                                FSM_SIGNAL(MOTION,EV_MOVE_STOP, NULL);
                                FSM_SIGNAL(MAIN, EV_MOTION_DONE, NULL);
                        } else {
-                               FSM_TIMER(500);
+                               FSM_TIMER(200);
                        }
                        ROBOT_UNLOCK(est_pos_odo);
                        break;