Page 1 of 1

Compiler problem always assuming Software UART

Posted: 01 January 2014, 15:07 PM
by mikep
When the compiler doesn't know the value of the port in DefineCom, it assumes it is always a Software UART which is incorrect. This is only true for DefineCom3. The following code

Code: Select all

'Private inputQueue(1 to 100) as Byte

Public Sub Main()
	Call OpenPWM8(1, 50.0, zxFastPWM)
	Call OpenSerialPort(2)
	'Call OpenQueue(inputQueue, Sizeof(inputQueue))
	'Call OpenCom(port, 9600, 0, inputQueue)
End Sub	

Public Sub OpenSerialPort(ByVal port as Byte)
	Call DefineCom(port, 0, 0, &H08) ' always assumes a software UART which is incorrect
End Sub
results in the error message an application cannot use both the software UART and 8-bit PWM on the ZX24su

Re: Compiler problem always assuming Software UART

Posted: 01 January 2014, 18:14 PM
by dkinzer
mikep wrote:When the compiler doesn't know the value of the port in DefineCom, it assumes it is always a Software UART which is incorrect.
The issue is that if it doesn't make that assumption the application might be built incompletely.

If your app doesn't use any SW UART channels, you can inform the compiler thus by using:

Code: Select all

Option ComChannels 0
With that option present all vestiges of the SW UART infrastructure are eliminated from the app.

Re: Compiler problem always assuming Software UART

Posted: 01 January 2014, 20:35 PM
by mikep
dkinzer wrote:If your app doesn't use any SW UART channels, you can inform the compiler thus by using:

Code: Select all

Option ComChannels 0
While I understand the intent of protecting the programmer from self-induced errors, I would also say that the solution is non-obvious. Either some text should be added to the chapter on native mode or perhaps a list of all compiler warning and errors should be given with an explanation of how to avoid each one, as appropriate.