Sometimes it is convenient to disable the backlash correction:
#!/usr/bin/perl
$m11 = Motor->locate( name => "mot11");
$m12->set( position => 0.1,
backlash => 0);
If needed, motors can be move relative to the current position.
#!/usr/bin/perl
$m11 = Motor->locate( name => "mot11");
$m12->set( position => 0.1,
relative => 1,
backlash => 0);