mirror of https://github.com/commaai/openpilot.git
format mansueversd.py
This commit is contained in:
parent
954fa5e6da
commit
e92ff96de3
|
@ -79,20 +79,20 @@ MANEUVERS = [
|
|||
initial_speed=5.,
|
||||
),
|
||||
Maneuver(
|
||||
"start from stop",
|
||||
[Action(1.5, 5)],
|
||||
repeat=2,
|
||||
initial_speed=0.,
|
||||
"start from stop",
|
||||
[Action(1.5, 5)],
|
||||
repeat=2,
|
||||
initial_speed=0.,
|
||||
),
|
||||
Maneuver(
|
||||
"creep: alternate between +1m/s^2 and -1m/s^2",
|
||||
[
|
||||
Action(1, 3), Action(-1, 3),
|
||||
Action(1, 3), Action(-1, 3),
|
||||
Action(1, 3), Action(-1, 3),
|
||||
],
|
||||
repeat=2,
|
||||
initial_speed=0.,
|
||||
"creep: alternate between +1m/s^2 and -1m/s^2",
|
||||
[
|
||||
Action(1, 3), Action(-1, 3),
|
||||
Action(1, 3), Action(-1, 3),
|
||||
Action(1, 3), Action(-1, 3),
|
||||
],
|
||||
repeat=2,
|
||||
initial_speed=0.,
|
||||
),
|
||||
Maneuver(
|
||||
"brake step response: -1m/s^2 from 20mph",
|
||||
|
|
Loading…
Reference in New Issue