Generic UART not working above 57600
Posted: 26 July 2017, 6:28 AM
Generic targets work great ,,, as long as You keep below ConsoleSpeed of 57600 ... 115200 does not work for my boards , is it a generic target issue or something i have overlooked ?
This affects both the 328P & Mega2560 . . .
This affects both the 328P & Mega2560 . . .
Code: Select all
Option TargetDevice ATmega2560
Option DeviceParameter clockFrequency 16000000
Option DeviceParameter rtcFrequency 500
Option DeviceParameter rtcScale 1
Option DeviceParameter swUartDivisor 8
Option DeviceParameter swUartMinSpeed 300
Option DeviceParameter swUartMaxSpeed 19200
Option DeviceParameter swUartBaseSpeed 2400
Option DeviceParameter timerSpeed1Divisor 1
Option DeviceParameter timerSpeed2Divisor 8
Option DeviceParameter ZBasicBootloader True
Option ConsoleSpeed 115200 ' 57600 works fine
Option RTC on
Option Signon on
Option TxQueueSize 100
Option RxQueueSize 40
Option Console Com1
Const Led as byte = B.7
Sub Main()
Debug.Print "Hello From 2560"
Do
Debug.Print "Hello ."
Call PutPin(Led, 1)
Call Delay(1.0)
Call PutPin(Led, 0)
Debug.Print "It Really Works :)"
Call Delay(0.5)
Loop
End Sub