Skip to content

Commit

Permalink
Merge pull request #16 from pupil-labs/fix_time_parameter_defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
papr authored May 6, 2022
2 parents 01e13e9 + 3ddcfc6 commit ed634d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.0.2
#####
- Fix default duration of network search (10 seconds)
- Fix default interval for time synchronization events (60 seconds)

2.0.1
#####
- Document minimum Pupil Invisible Companion version required (v1.4.14)
Expand Down
4 changes: 2 additions & 2 deletions src/pupil_labs/invisible_lsl_relay/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ def evaluate_user_input(user_input, device_list):
@click.command()
@click.option(
"--time_sync_interval",
default=10,
default=60,
help=(
"Interval in seconds at which time-sync events are sent. "
"Set to 0 to never send events."
),
)
@click.option(
"--timeout",
default=60,
default=10,
help="Time limit in seconds to try to connect to the device",
)
@click.option(
Expand Down

0 comments on commit ed634d4

Please sign in to comment.