Code: Select all
option TargetDevice ZX24x
dim Data(0) as unsignedinteger
Sub Main()
call InputCaptureEx(D.0, Data(0), 1, 1)
End Sub
D.0 isn't valid on a -24x?
Code: Select all
option TargetDevice ZX24x
dim Data(0) as unsignedinteger
Sub Main()
call InputCaptureEx(D.0, Data(0), 1, 1)
End Sub
It is. However, there is a problem in the compiler code that validates the input capture pin for the ZX-24x. In spite of the warning, the generated code will still function correctly.GTBecker wrote:D.0 isn't valid on a -24x?
Code: Select all
#pragma warning(push; 3:Off)
call InputCaptureEx(D.0, Data(0), 1, 1)
#pragma warning(pop)