Beispiel #1
0
void control_system_set_speed_low()
{
  control_system_set_speed_ratio(0.5);
}
Beispiel #2
0
void control_system_set_speed_medium()
{
  control_system_set_speed_ratio(0.7);
}
Beispiel #3
0
void control_system_set_speed_high()
{
  control_system_set_speed_ratio(1);
}
Beispiel #4
0
void control_system_set_speed_low(struct control_system *am)
{
  control_system_set_speed_ratio(am, 0.5);
}
Beispiel #5
0
void control_system_set_speed_medium(struct control_system *am)
{
  control_system_set_speed_ratio(am, 0.7);
}
Beispiel #6
0
void control_system_set_speed_high(struct control_system *am)
{
  control_system_set_speed_ratio(am, 1);
}