Skip to content

Commit

Permalink
change from 100ms to 2000ms
Browse files Browse the repository at this point in the history
  • Loading branch information
ipa-vsp committed Dec 6, 2023
1 parent 7cde31f commit 785ecb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion canopen/sphinx/user-guide/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ but come from the lely core library. Below you find a list of possible configura
reset_all_nodes; Specifies whether all slaves shall be reset in case of an error event on a mandatory slave (default: false, see bit 4 in object 1F80).
stop_all_nodes; Specifies whether all slaves shall be stopped in case of an error event on a mandatory slave (default: false, see bit 6 in object 1F80).
boot_time; The timeout for booting mandatory slaves in ms (default: 0, see object 1F89).
boot_timeout; The timeout for booting all slaves in ms (default: 100ms).
boot_timeout; The timeout for booting all slaves in ms (default: 2000ms).

Device Section
--------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class NodeCanopenMaster : public NodeCanopenMasterInterface
this->node_->get_logger(),
"No timeout parameter found in config file. Using default value of 100ms.");
}
this->timeout_ = timeout.value_or(100);
this->timeout_ = timeout.value_or(2000);
RCLCPP_INFO_STREAM(
this->node_->get_logger(), "Master boot timeout set to " << this->timeout_ << "ms.");
}
Expand Down

0 comments on commit 785ecb8

Please sign in to comment.