Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic how to find serial.begin baudrate in a large project (Read 2342 times)
Henk Levels
Junior Member
**
Offline


Posts: 81
Joined: Sep 28th, 2015
how to find serial.begin baudrate in a large project
Oct 9th, 2015 at 1:36pm
Print Post  
Hello,

I'm new to Atem Studio and C++, so perhaps for most a simple question, but not for me.
I have opened a Arduijo Uno project with many libraries.
I see a serial.print command but not the setup of it like serial.begin(9600) even when using the find in files (Ctrl-Shift-F)
How can i find in Atmel Studio 6.2 for example the baud rate for the serial command, so that I know on what baud rate the serial monitor must be set.
Thanks in advance
« Last Edit: Oct 9th, 2015 at 1:45pm by Henk Levels »  
Back to top
 
IP Logged
 
Tim@Visual Micro
Administrator
*****
Offline


Posts: 12186
Location: United Kingdom
Joined: Apr 10th, 2010
Re: how to find serial.begin baudrate in a large project
Reply #1 - Oct 9th, 2015 at 2:51pm
Print Post  
Hi,

I would search for .begin(

If a library is calling the begin then to find this click the project in the solution explorer then click menu item Project>show arduino core and library sources". Then search again.

Remember that a library can be passed &Serial which it can load into a local variable which might then translate to something like this currentConnection.begin(speed). That's why I suggest searching for .begin(
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint