Re: [ros-users] ROS node publishing not responsive in C++ co…

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Brian Gerkey
日付:  
To: ros-users
題目: Re: [ros-users] ROS node publishing not responsive in C++ code
On Wed, Aug 11, 2010 at 10:48 AM, ibwood <> wrote:
> I'm having trouble deciphering why it is not
> outputting "e" and continuing on to initialize and publish to the joyChatter
> node.


> printf("e");


Try adding a newline to your printf() calls, e.g.

printf("e\n");

Otherwise, the terminal might buffer the output, preventing you from seeing it.

    brian.