Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ISDN on ELU26 - B Channel Selection

Status
Not open for further replies.

gedii

Programmer
Apr 9, 2003
48
FR

Hi

I have a problem on a BC9 (CNA-83) site where an ELU26 is in use. Basically, if you call towards one of it's circuits, the MD110 connects you to the ISDN device on the second "B" channel (ie: B2). Unfortunately the data application that the end user is running doesn't like this. How can I ensure that calls are presented to Channel B1 first ?

Thanks

gedii.
 
I had the same problem at a site which could not be resolved and in the end I used a TLU79 interface and setup a route so that the 1st B1 could be selected 1st. The only problem with using a TLU79 is it provides an unpowerde bus so the equipment you connect must supply power.
If you do have a TLU79 you will see that it is using the same physical circuit board minus a few components as the ELU26 and the cabling is exactly the same.
Good luck
 
Hi, don't despair, there is a patch for this which unfortunately I cannot find at the moment, but surely somebody else may be able to come up with it. I will keep searching on my PC....m110d
 
Try this!




PCASI:UNIT=ITLP,CI=C78318A,REV=2-R2A,IA=25B6,RA=264A,BYTE=0;
MOVEA.L ($1A,A6),A4;
MOVE.L A4,D2;
TRAPEQ.W #QFP;
BFEXTU (0,A4){4:4},D3; ! B1 !
TST.B D3;
BNE L0;
MOVEA.L ($1E,A6),A3;
MOVE.L A3,D4;
TRAPEQ.W #QFP;
TST.B ($A,A3);
BNE L0;
MOVE.B #1,($103,A6);
BRA L9;
L0:;
MOVEA.L ($1A,A6),A2;
MOVE.L A2,D3;
TRAPEQ.W #QFP;
BFEXTU (0,A2){0:4},D6; ! B2 !
TST.B D6;
BNE L1;
MOVEA.L ($1E,A6),A3;
MOVE.L A3,D7;
TRAPEQ.W #QFP;
TST.B ($B,A3);
BNE L1;
MOVE.B #2,($103,A6);
BRA L9;
L1:;
JMP (PROGSTART+$260A);
L9:;
END;
!A;
PCASI:UNIT=ITLP,CI=C78318A,REV=2-R2A,IA=12580,RA=12602,BYTE=6;
MOVEA.L ($1A,A6),A4;
MOVE.L A4,D2;
TRAPEQ.W #QFP;
BFEXTU (0,A4){4:4},D3; ! B1 !
TST.B D3;
BNE L0;
MOVEA.L ($1E,A6),A3;
MOVE.L A3,D4;
TRAPEQ.W #QFP;
TST.B ($A,A3);
BNE L0;
BFINS D1,(0,A4){4:4};
MOVEQ #1,D0;
MOVEA.L (2,A6),A5;
MOVE.L A5,D2;
TRAPEQ.W #QFP;
ANDI.B #$3,D0;
MOVE.B D0,(1,A5);
BRA L9;
L0:;
MOVEA.L ($1A,A6),A2;
MOVE.L A2,D3;
TRAPEQ.W #QFP;
BFEXTU (0,A2){0:4},D6; ! B2 !
TST.B D6;
BNE L1;
MOVEA.L ($1E,A6),A3;
MOVE.L A3,D7;
TRAPEQ.W #QFP;
TST.B ($B,A3);
BNE L1;
MOVEQ #1,D1;
BFINS D1,(0,A2){0:4};
MOVEQ #2,D1;
MOVEA.L (2,A6),A4;
MOVE.L A4,D0;
TRAPEQ.W #QFP;
ANDI.B #$3,D1;
MOVE.B D1,(1,A4);
BRA L9;
L1:;
CLR.B ($180,A6);
L9:;
END;
!A;
PCACS:UNIT=ITLP,CI=C78318A;
Y;
PCCOS:UNIT=ITLP,CI=C78318A;
Y;
 
Just sent this lot in a little while ago and.........it works !! Thankyou very very much for your help on this.

gedii.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top