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

Top Pagina
Bijlagen:
Bericht als e-mail
+ (text/plain)
Delete this message
Reply to this message
Auteur: Brian Gerkey
Datum:  
Aan: ros-users
Onderwerp: 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.