background image

Transmission

  

RS485 transmission is simple to implement. The AUTO feature in RS485 mode automatically enables 
the transmitter when data are ready to send, so no software enabling is required. The following 
software example is for non-AUTO operation in RS422 mode. First the RTS line should be set high by 
writing a 1 to Bit 1 of the Modem Control Register at Base A4. The RTS line is used to toggle 
the transceiver from receive mode to transmit mode and vice versa.. 
  
After the above is done, the card is ready to send data. To transmit a string of data, the transmitter must 
first check Bit 5 of the Line Status Register at Base A5. That bit is the transmitter-holding-
register-empty flag. If it is high, the transmitter has sent the data. The process of checking the bit until it 
goes high followed by a write is repeated until no data remains. After all data has been transmitted, the 
RTS bit should be reset by writing a 0 to Bit 1 of the Modem Control Register. 
  
The following C code fragment demonstrates this process: 

  
outportb(BA4, inportb(BA4)|0x02);  
 

 

 

/*Set RTS bit without altering states of other bits*/ 

while(data[i]);  

/*While there is data to send*/ 


while(!(inportb(BA5)&0x20)); 

/*Wait until transmitter is empty*/ 

outportb(BASEADDR,data[i]); 
i++; 

outportb(BA4, inportb(BA4)&0xFD); 
 

 

 

/*Reset RTS bit without altering states of other bits*/ 

 

Caution

The OUT2 bit of the UART must be set ‘TRUE’ for proper interrupt driven communication. Legacy 
software uses this bit to gate interrupts and the card may not communicate if bit 3 of register 4 (Modem 
Control Register) is not set. 

Manual PCI-COM-1S 

16

Содержание LPCI-COM-1S

Страница 1: ...ess underutilized and idle equipment along with credit for buybacks and trade ins Custom engineering so your equipment works exactly as you specify Critical and expedited services Leasing Rentals Demo...

Страница 2: ...10623 Roselle Street San Diego CA 92121 858 550 9559 FAX 858 550 7322 contactus accesio com www accesio com MODEL PCI COM 1S USER MANUAL FILE MPCI COM 1S Ca...

Страница 3: ...thers IBM PC PC XT and PC AT are registered trademarks of the International Business Machines Corporation Printed in USA Copyright 1995 2005 by ACCES I O Products Inc 10623 Roselle Street San Diego CA...

Страница 4: ...y warranty Warranty commences with equipment shipment Following Years Throughout your equipment s lifetime ACCES stands ready to provide on site or in plant service at reasonable rates similar to thos...

Страница 5: ...Address Selection 12 Chapter 5 Programming 13 Initialization 14 Table 5 1 Baud Rate Divisor Values 14 Chapter 6 Connector Pin Assignments 17 Table 6 1 Connector Pin Assignments 17 Appendix A Applicati...

Страница 6: ...biased please contact the factory COM Port Compatibility A 16550 UART is used as the Asynchronous Communication Element ACE It includes 16 byte transmit receive FIFO buffers to protect against lost d...

Страница 7: ...yle connector compatible with RS422 and RS485 specifications Character length 5 6 7 or 8 bits Parity Even odd or none Stop Interval 1 1 5 or 2 bits Serial Data Rates Up to 115 200 baud Asynchronous Fa...

Страница 8: ...TRANSCEIVER AUTO RTS CIRCUITRY OSCILLATOR PCI INTERFACE CHIP UART 16550 OR SIMILAR CO MPUTER PCI BUS DB9M Tx Rx Tx Rx RS485 MODE ONLY Tx Rx IRQ Figure 1 1 Block Diagram Manual PCI COM 1S 7...

Страница 9: ...tallation The following instructions assume the CD ROM drive is drive D Please substitute the appropriate drive letter for your system as necessary DOS 1 Place the CD into your CD ROM drive 2 Type B t...

Страница 10: ...uter cover and turn ON the computer Enter the CMOS setup program of your system and verify that the PCI plug and play option is set appropriately for your system Systems running Windows 95 98 2000 XP...

Страница 11: ...85 operations where there are multiple terminals only the RS485 ports at each end of the network should have terminating resistors as described above Also for RS485 operation there must be a bias on t...

Страница 12: ...TERMOUT 485 422 TERMIN X4 X1 4 80 1 80 Figure 3 1 Option Selection Map Manual PCI COM 1S 11...

Страница 13: ...any allotted Alternately some operating systems Windows 95 98 2000 can be queried to determine which resources were assigned In these operating systems you can use either PCIFind or the Device Manager...

Страница 14: ...nstalls into Windows as COM ports Thus the Windows standard API functions can be used In particular CreateFile and CloseHandle for opening and closing a port SetupComm SetCommTimeouts GetCommState and...

Страница 15: ...4000 ft 1200 96 384 4000 ft Recommended maximum distances for differentially driven data cables RS422 or RS485 are for typical conditions Table 5 1 Baud Rate Divisor Values In C the code to set the ch...

Страница 16: ...driven communications should be used whenever possible and is required for high data rates Writing an interrupt driven receiver is not much more complex than writing a polled receiver but care should...

Страница 17: ...t is high the transmitter has sent the data The process of checking the bit until it goes high followed by a write is repeated until no data remains After all data has been transmitted the RTS bit sho...

Страница 18: ...9 Rx Receive Data Table 6 1 Connector Pin Assignments Data Cable Wiring The following table shows pin connections between two devices for Simplex Half Duplex and Full Duplex operations Mode Card 1 Ca...

Страница 19: ...ve Balanced Differential Signals The reason that RS422 and RS485 devices can drive longer lines with more noise immunity than RS232 devices is that a balanced differential drive method is used In a ba...

Страница 20: ...characteristic impedance of the cable Note You do not have to add a terminator resistor to your cables when you use the card Termination resistors for the RX and RX lines are provided on the card and...

Страница 21: ...that one node be a master node and all others be slaves The network is connected so that the master communicates to all slaves and all slaves communicate only with the master This has advantages in eq...

Страница 22: ...give us some feedback please email us at manuals accesio com Please detail any errors you find and include your mailing address so that we can send you any manual updates 10623 Roselle Street San Dieg...

Страница 23: ...uipment Have surplus equipment taking up shelf space We ll give it a new home Learn more Visit us at artisantg com for more info on price quotes drivers technical specifications manuals and documentat...

Отзывы: