Re: [ros-users] dynamic_reconfigure questions

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Ken Conley
日付:  
To: morris, ros-users
題目: Re: [ros-users] dynamic_reconfigure questions
On Thu, Jun 17, 2010 at 5:02 AM, Bill Morris <> wrote:
> How is the startup order controlled in a launch file? As far I can tell
> the timing and order is intentionally indeterminate, so the nodes
> parameters may not be set until the node is launched. Is this correct?


No, parameters are always set before *any* node is launched (unless
you launch un-named nodes, which generates a warning). One of the
reasons for requiring a 'name' attribute on all nodes is so that this
guarantee can be provided.

- Ken