Compiler problem always assuming Software UART

Discussion about the ZBasic language including the System Library. If you're not sure where to post your message, do it here. However, do not make test posts here; that's the purpose of the Sandbox.
Post Reply
mikep
Posts: 796
Joined: 24 September 2005, 15:54 PM

Compiler problem always assuming Software UART

Post 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
Mike Perks
dkinzer
Site Admin
Posts: 3122
Joined: 03 September 2005, 13:53 PM
Location: Portland, OR

Re: Compiler problem always assuming Software UART

Post 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.
- Don Kinzer
mikep
Posts: 796
Joined: 24 September 2005, 15:54 PM

Re: Compiler problem always assuming Software UART

Post 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.
Mike Perks
Post Reply