Skip to content

Commit

Permalink
fix script (missing period arg)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoignonec committed Nov 9, 2023
1 parent 5f0289d commit ffb66e8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
import numpy as np


def pytroller_logic_impl(states, commands, msg, params):

def pytroller_logic_impl(period, states, commands, msg, params):
# controller sampling time
Ts = 0.002
Ts = period
# env
ke = 100.0
be = 8.0
Expand Down

0 comments on commit ffb66e8

Please sign in to comment.