Register.Console.Speed changing
Posted: 10 January 2008, 6:58 AM
How can I change the Register.Console.Speed
I like to use console.writeline @ 9600
I like to use console.writeline @ 9600
A place to discuss ZBasic and ZX series microcontrollers.
https://forum.zbasic.net/
Code: Select all
Sub Main()
' COM1 is open at the beginning of a program so it needs to be
' closed before changing the baud rate
Call CloseCom(1, 0, 0)
Call OpenCom(1, 9600, Register.RxQueue, Register.TxQueue)
Debug.Print CStr(Register.Console.Speed)
End Sub
It is important to note that the "sign on" message will always be output when the speed for Com1 is still at the default speed of 19.2K. If you have a terminal connected that is configured for 9600, the sign on message won't be received correctly. You may suppress the sign on message by placing the directive shown below in the first module listed in your project.petervanlievenoogen wrote:I like to use console.writeline @ 9600
Code: Select all
Option SignOn Off
Register.SignOn = False