Compiler problem always assuming Software UART
Posted: 01 January 2014, 15:07 PM
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
results in the error message an application cannot use both the software UART and 8-bit PWM on the ZX24su
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