Unless you desire to provide the timing and/or triggering signals as outputs, you will want to use the RTSI bus to share these signals. You may want to consider one of the follow routes:
Using the output start trigger as the input start trigger:
Select_Signal (1, ND_RTSI_0, ND_OUT_START_TRIGGER, ND_LOW_TO_HIGH);
Select_Signal (1, ND_IN_START_TRIGGER, ND_RTSI_0, ND_LOW_TO_HIGH);
Using the input start trigger as the output start trigger:
Select_Signal (1, ND_RTSI_0, ND_IN_START_TRIGGER, ND_LOW_TO_HIGH);
Select_Signal (1, ND_OUT_START_TRIGGER, ND_RTSI_0, ND_LOW_TO_HIGH);
Using the output update clock as the input scan clock:
Select_Signal (1, ND_RTSI_0, ND_OUT_UPDATE, ND_HIGH_TO_LOW);
Select_Signal (1, ND_IN_SCAN_START, ND_RTS
I_0, ND_HIGH_TO_LOW);
ETC...
I hope this helps.
Spencer S.