Group: Administrators
Posts: 13K,
Visits: 104K
|
> The psychophysiology program stubbornly wants specific binary input for specific output triggers (e.g., "01000001" for A), but this > mapping apparently changed somehow from Inquisit 3 to 4. Is there any place where I could find documentation to map the > appropriate binary codes to the triggers in Inquisit 4?
There hasn't been any change in that regard. The only difference is that Inquisit 4 will allow you to specify port signals as integers as an alternative to 8-bit TTL signals in binary form. The specification you have in your code (e.g., "01000001") is perfectly fine / valid Inquisit 4 syntax and should work. I suspect the problem lies elsewhere.
<port A> / numitems = 1 / port = com1 / subport = data / items = ("01000001") / select = sequence / erase = false </port>
Glancing over the example <port> definitions you provided, I'd be interested to know what happens if you remove the /subport attribute, which isn't applicable to serial / COM ports anyway.
|