Changes between Version 10 and Version 11 of serial


Ignore:
Timestamp:
08/09/2018 11:22:37 PM (6 years ago)
Author:
Tim Harvey
Comment:

remove avila/cambria/rincon data

Legend:

Unmodified
Added
Removed
Modified
  • serial

    v10 v11  
    6161||          ||         || UART2    || ttyS2    || GPS                                        ||
    6262|| ||
    63 || Rincon   || GW2361  || UART0    || ttyS0    || console: 3.3V TTL JTAG J2              ||
    64 ||          ||         || UART1    || ttyS1    || RS232 J7                               ||
    65 ||          ||         || UART2    || ttyS2    || RS485 J6                               ||
    66 || ||
    67 || Cambria  || GW2350  || UART0    || ttyS0    || console: 3.3V TTL JTAG J1/J10          ||
    68 ||          ||         || UART1    || ttyS1    || GPS                                    ||
    69 ||          ||         || UART2    || ttyS2    || RS485 J6                               ||
    70 ||          || GW2358  || UART0    || ttyS0    || console: 3.3V TTL JTAG J10 / RS232 J17 ||
    71 ||          ||         || UART1    || ttyS1    || GPS                                    ||
    72 ||          ||         || UART2    || ttyS2    || RS485 J3                               ||
    73 || ||
    74 || Avila    || GW2347  || UART0    || ttyS0    || console: 3.3V TTL JTAG J2 / RS232 J5   ||
    75 ||          ||         || UART1    || ttyS1    || UART: RS232 J3                         ||
    76 ||          || GW2348  || UART0    || ttyS0    || console: 3.3V TTL JTAG J7 / RS232 J13  ||
    77 ||          ||         || UART1    || ttyS1    || UART: RS232 J6                         ||
    78 ||          || GW2355  || UART0    || ttyS0    || console: 3.3V TTL JTAG J3 / RS232 J5   ||
    79 ||          ||         || UART1    || ttyS1    || GPS                                    ||
    80 ||          || GW2357  || UART0    || ttyS0    || console: 3.3V TTL JTAG J2 / RS232 J6   ||
    81 ||          ||         || UART1    || ttyS1    || UART: RS232 J36                        ||
    8263 1. Depends on software configuration
    8364
     
    251232|| Laguna    || GW238x+GW16067          || gpio3   || [http://dev.gateworks.com/datasheets/MAX3483-MAX3491.pdf MAX3485] || optional      || 4.75k pull up/down || use tcdrain() and userspace /sys/class/gpio/gpio3 ||
    252233|| ||
    253 || Rincon    || GW2361 '''(optional)''' || RTS     || [http://dev.gateworks.com/datasheets/MAX3483-MAX3491.pdf MAX3485] || off-board     || off-board || use tcdrain() and TIOCMBIC/TIOCMBIS ioctl ||
    254 || ||
    255 || Cambria   || GW235x '''(optional)''' || DTR     || [http://dev.gateworks.com/datasheets/MAX3483-MAX3491.pdf MAX3485] || optional      || optional  || use tcdrain() and TIOCMBIC/TIOCMBIS ioctl ||
    256 || ||
    257234
    258235Note that if a driver supports TIOCSRS485 (in other words it handles the assertion/de-assertion of TXEN in the driver) this is preferred over using tcdrain() to determine when the FIFO is empty as tcdrain() can have considerable latency at small transmit sizes.
     
    292269 * https://en.wikipedia.org/wiki/RS-485
    293270
    294 [=#cambria-rs485]
    295 === Cambria ===
    296 The Cambria GW2350 and GW2358 optionally supports half-duplex, multi-drop RS485:
    297  * TL16C752B UART
    298  * MAX3485 transceiver
    299  * TXEN connected to DTR
    300  * '''optional on-board termination resistor'''
    301  * '''optional on-board fail-safe bias resistors'''
    302 
    303 By 'optional' this means the baseboard design supports this, but it is not loaded on standard product therefore would be a Gateworks Special. Contact sales@gateworks.com if interested to see if a configuration already exists.
    304 
    305 Your software must assert/de-assert DTR manually (see [#rs485-example] example code) or the uart driver would need to be modified to add TIOCSRS485 ioctl support.
    306 
    307 
    308 [=#rincon-rs485]
    309 === Rincon ===
    310 The Rincon GW2361 supports half-duplex, multi-drop RS485:
    311  * DM6446 (CPU) UART2 (/dev/ttyS2)
    312  * MAX3485 transceiver
    313  * TXEN connected to RTS
    314 
    315 Your software must assert/de-assert RTS manually (see [#rs485-example] example code) or the uart driver would need to be modified to add TIOCSRS485 ioctl support.
    316271
    317272