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.
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
'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
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.