IDE Output Window
-
- Posts: 163
- Joined: 24 March 2008, 23:33 PM
- Location: Southern California (Blue)
IDE Output Window
Hello. I want to increase the number of lines in the IDE output window to see more of my ZX-40A data. The default seems to be ~105 lines. Also, is it possible to increase the output rate beyond the debug.print command? Thanks.
Re: IDE Output Window
There is section of the ZBasic Language Reference Manual that describes exactly how to do that.liam.zbasic wrote:I want to increase the number of lines in the IDE output window to see more of my ZX-40A data.
http://www.zbasic.net/doc/ZBasicRef.php?page=116
The default baud rate for Com1 is 19.2K baud and the IDE is set to match that by default. You can change the baud rate of Com1 by closing Com1 and opening it again with the parameters that you want to use. You'll also have to manually set the baud rate in the IDE to match whatever rate you choose.liam.zbasic wrote:Also, is it possible to increase the output rate beyond the debug.print command?
You need to be aware, however, that the "sign on" message is sent to the output queue before Main() begins executing. Consequently, if you change the baud rate of Com1 and have the IDE set to match, the sign on message will display as garbled characters because they will have been output at the default rate. You can avoid this by using "Option SignOn Off" in the first module of your project. You can read more about that, and the applicable caveats, in the ZBasic Language Reference Manual:
http://www.zbasic.net/doc/ZBasicRef.php?page=20
- Don Kinzer
-
- Posts: 163
- Joined: 24 March 2008, 23:33 PM
- Location: Southern California (Blue)