Change defaults
This commit is contained in:
parent
e3cf3f9029
commit
03f91f29bf
2 changed files with 3 additions and 2 deletions
|
@ -54,12 +54,12 @@ impl Default for LaserSettings {
|
||||||
use laser::stream;
|
use laser::stream;
|
||||||
use laser::stream::frame::InterpolationConfig;
|
use laser::stream::frame::InterpolationConfig;
|
||||||
LaserSettings {
|
LaserSettings {
|
||||||
point_hz: stream::DEFAULT_POINT_HZ,
|
point_hz: 8000, //stream::DEFAULT_POINT_HZ,
|
||||||
latency_points: stream::points_per_frame(
|
latency_points: stream::points_per_frame(
|
||||||
stream::DEFAULT_POINT_HZ,
|
stream::DEFAULT_POINT_HZ,
|
||||||
stream::DEFAULT_FRAME_HZ,
|
stream::DEFAULT_FRAME_HZ,
|
||||||
),
|
),
|
||||||
frame_hz: stream::DEFAULT_FRAME_HZ,
|
frame_hz: 55, //stream::DEFAULT_FRAME_HZ,
|
||||||
enable_optimisations: true,
|
enable_optimisations: true,
|
||||||
distance_per_point: InterpolationConfig::DEFAULT_DISTANCE_PER_POINT,
|
distance_per_point: InterpolationConfig::DEFAULT_DISTANCE_PER_POINT,
|
||||||
blank_delay_points: InterpolationConfig::DEFAULT_BLANK_DELAY_POINTS,
|
blank_delay_points: InterpolationConfig::DEFAULT_BLANK_DELAY_POINTS,
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue