Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: set default period for linux_gpios to 0.1 #10

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
7 changes: 4 additions & 3 deletions linux_gpios.orogen
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ task_context "Task" do
#
# - create reader and writer
# - write state until it is reported as being the expected new state
output_port "r_states", "/linux_gpios/GPIOState"
output_port("r_states", "/linux_gpios/GPIOState")
.keep_last_written_value(true)

periodic 0.01

Expand Down Expand Up @@ -81,5 +82,5 @@ task_context "TimerGPIOTask" do
# Deadline to complete the command
output_port "deadline", "base/Time"

periodic 0.01
end
periodic 0.1
end
Loading