Global Traffic Technologies OPTICOMGPS2 Opticom Radio Transceiver User Manual RF Module Serial Protocol

Global Traffic Technologies, LLC Opticom Radio Transceiver RF Module Serial Protocol

User Manual

Download: Global Traffic Technologies OPTICOMGPS2 Opticom Radio Transceiver User Manual RF Module Serial Protocol
Mirror Download [FCC.gov]Global Traffic Technologies OPTICOMGPS2 Opticom Radio Transceiver User Manual RF Module Serial Protocol
Document ID1664674
Application IDi6/SwVriDwgPja9fo7s+xg==
Document DescriptionUser Manual
Short Term ConfidentialNo
Permanent ConfidentialNo
SupercedeNo
Document TypeUser Manual
Display FormatAdobe Acrobat PDF - pdf
Filesize20.49kB (256118 bits)
Date Submitted2012-03-28 00:00:00
Date Available2012-04-11 00:00:00
Creation Date2012-03-19 15:19:48
Producing SoftwareAdobe PDF Library 10.0
Document Lastmod2012-03-19 15:19:51
Document TitleRF Module Serial Protocol
Document CreatorAcrobat PDFMaker 10.1 for Word
Document Author: Global Traffic Technologies LLC

OPTICOMGPS2 Radio Transceiver Module
User Manual
79-1000-0772-0
Revision A
Copyright © 2000-2012, Global Traffic Technologies, LLC
Ownership Disclaimer
This document contains confidential information that is the sole property of Global Traffic
Technologies (GTT) and is intended for use by their employees and designees. The user shall keep
the contents of this document confidential and protect it from disclosure to outside parties. Any
copying, distribution, or re-use, either in part or in whole, without the express written consent of
Global Traffic Technologies is prohibited.
Trademark Conventions
The following is the list of registered trademarks of Global Traffic Technologies:
•
Opticom™
All instances of Opticom, Opticom Infrared and Opticom GPS contained within this document are understood
to reference these trademarks without repeating the ™ symbol.
Page 2 of 31
Copyright © 2000-2012, Global Traffic Technologies, LLC
Table of Contents
1.
INTRODUCTION ........................................................................................................................... 4
1.1
1.2
2.
Scope .......................................................................................................................................................................................... 4
Definitions, Acronyms, and Abbreviations ....................................................................................................................... 4
PROTOCOL SPECIFICATION ...................................................................................................... 5
2.1
2.2
2.3
2.4
2.5
2.6
3.
Roles............................................................................................................................................................................................ 5
Error Detection & Recovery................................................................................................................................................... 5
Flow Control .............................................................................................................................................................................. 5
Character Format ..................................................................................................................................................................... 5
Supported Data Types ............................................................................................................................................................ 6
Message Format ....................................................................................................................................................................... 6
SETUP AND CONFIGURATION MESSAGES .............................................................................. 8
3.1
3.2
3.3
3.4
3.5
3.6
3.7
3.8
3.9
3.10
3.11
4.
Set Mode (M) .............................................................................................................................................................................. 8
Set Framing Configuration (F) .............................................................................................................................................. 9
Hop Table Configuration (H) ............................................................................................................................................... 10
Hop Table Row Index (I) ....................................................................................................................................................... 14
Transmit Slot Data (T) ........................................................................................................................................................... 15
Receive Slot Data (r) .............................................................................................................................................................. 16
Broken Mode Report (b) ....................................................................................................................................................... 17
Signal Strength Report (s) ................................................................................................................................................... 17
Set Serial Number (N) ............................................................................................................................................................ 18
Set Attenuation Level (G) ......................................................................................................................................................... 19
Erase Faults (J) ......................................................................................................................................................................... 20
QUERY MESSAGES ................................................................................................................... 21
4.1
4.2
4.3
4.4
4.5
Module Identity Query (D) .................................................................................................................................................... 21
Mode Query (Q) ....................................................................................................................................................................... 22
Framing Configuration Query (C) ...................................................................................................................................... 23
Hop Table Configuration Query (A) ................................................................................................................................... 24
Broken Mode (B) ..................................................................................................................................................................... 25
5.
HARDWARE INTERFACE .......................................................................................................... 26
6.
AGENCY STATEMENTS ............................................................................................................ 27
7.
REVISION HISTORY ................................................................................................................... 31
Page 3 of 31
Copyright © 2000-2012, Global Traffic Technologies, LLC
1. Introduction
1.1 Scope
This specification defines and controls the serial communications interface between the Global Traffic Technologies
(GTT) Radio Module controller and the RF module controller through which the configuration and control of the RF
module is performed.
1.2 Definitions, Acronyms, and Abbreviations
This section contains descriptions of terms, acronyms, and abbreviations that are used throughout this document.
3D – Three dimensional
RF – Radio Frequency
PPS – Pulse Per Second
Page 4 of 31
Copyright © 2000-2012, Global Traffic Technologies, LLC
2.
Protocol Specification
The following subsections detail the structure of the protocol. Individual message types are defined in the next major
section.
2.1
Roles
This protocol is intended to be used in a point-to-point mode only meaning one GTT controller to one RF module. The
devices act as near peers in that the GTT device assumes the role of a master device in order to perform
configuration of the RF module. However, once operations have begun, the RF module autonomously reports inbound
data as it occurs while the GTT controller periodically sends content to be transmitted and the time index to be used
in frequency hopping.
2.2
Error Detection & Recovery
All devices are expected to detect framing, checksum and overflow errors. If a device detects a communication error
such as these, the device will not send a response to the received message. It is the sender’s responsibility to detect
the lack of response from the receiving device and resend the command if it so chooses. During configuration, the
GTT controller will perform retries to ensure that the RF module is fully configured prior to enabling over-the-air
operation.
If a device receives a message without error, but the message contains invalid data, or the requested operation
cannot be performed due to the current context of the receiving device, then the device is expected to provide
information in the response to the sender that it could not carry out the command.
Under operational conditions (i.e. over-the-air), the messages are transfers of data, not diagnostics or configuration.
Failure of a transfer (See annotations in the message section) shall not require a retry since loss of a single data is
non-critical (i.e. either repeated or new data will be arriving momentarily).
2.3
Flow Control
No flow control shall be supported by this protocol.
2.4 Character Format
The supported binary character format is the following:
Start bits:
Data bits:
Stop bits:
Parity:
None
Page 5 of 31
Copyright © 2000-2012, Global Traffic Technologies, LLC
2.5
Supported Data Types
In order to specify the message formats, the following data type definitions are necessary:
Type
Size
Range
UCHAR
8 bits
0..255
CHAR
8 bits
-128..127
USHORT
16 bits
0..65535
SHORT
16 bits
-32768..32767
ULONG
32 bits
0..4,294,967,295
LONG
32 bits
-2,147,483,648..2,147,483,647
Each byte (where a byte is 8 bits in size) of these data types is serial transmitted least-significant bit first, mostsignificant bit last. Multi-byte data types are transmitted least-significant byte first, most significant byte last. For
example, an unsigned short with value 1234H would be transmitted as a byte with value 34H followed by a byte with
value 12H (i.e. little endian).
2.6 Message Format
Messages are sent from the host to the radio in multiple of 8 bytes. For messages that are not even multiples of 8
bytes, the remaining package is padded with trailing zeros (0).
Messages have the following structure:
with the fields further defined below:
The
shall be a single UCHAR with a value 0x02 representing an STX. A message receiver begins assembling a new incoming message when it receives a
meeting this specification. 16 bit value specifying the number of bytes to follow including the checksum. The is composed of a single ASCII CHAR. Commands are defined in section 5. Commands that are initiated by the host are always an uppercase character. Commands that initiated by the RF module or responses to host commands are always a lowercase character. Page 6 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC The field is an optional, variable length field which has a format that is context dependent for each . The maximum length for this field is not limited by the protocol. 16 The field is a single USHORT field which is the 16-bit sum (sum modulo 2 ) of all the bytes in the message prior to this field. This sum includes the
,,, and fields. Page 7 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3. Setup and Configuration Messages 3.1 Set Mode (M) Used by the host to change the operational mode of RF module. Offline mode is an idle mode where operational setup occurs. Online mode is an active operations mode where normal transmit and receive functions are performed. Tests modes are receive test mode and transmit test mode. RF Module responds with the new active mode or a Broken Mode status. Offline Mode is characterized by no RF activity (transmitter off, receiver off) and no frequency hopping. Online Mode is possible when the RF module has been completely configured. Note: When enabled, programming mode may use a different protocol Sent by Host: Data Element Base Type Instances Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘M’ for mode. Length USHORT Command UCHAR Mode UCHAR Values are : 0 – Offline Mode 1 – Online Mode 2 – Transmit Test Mode 3 – Programming Description Number of bytes to follow including checksum. Always 5 for this message. Single ASCII character ‘m’ mode acknowledge. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Values are: 0 – Accepted 1 – Invalid mode 2 – Cannot change mode, insufficient information or setup Current Mode UCHAR Values are : 0 – Offline Mode 1 – Online Mode 2 – Transmit Test Mode 3 – Programming 4 – Broken Mode Page 8 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.2 Set Framing Configuration (F) Used by the host to configure the number of slots to occur in each frequency hop, number of data slots, and the individual slot configurations. All slots are assumed to be receive slots until configured otherwise. Note: the first one or more slots of a frame may not be useable if the transmission time is less than 3.167 msec. This time is needed by the radio to tune to the new frequency. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR UCHAR Number of slots to follow. Maximum of 255 slots. Default is 186. USHORT Number of bytes in this slot. Maximum size is dictated by the number of slots. Total number of bytes sent per frame cannot exceed 16,000. Number slots/hop For each slot Slot Size of Description Number of bytes to follow including checksum. Value is 4 + (number of slots * 2). Single ASCII character ‘F’ for framing configuration. Note: Slot sizes must be even number of bytes. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘f’ for framing configuration acknowledge. Values are: 0 – Accepted 1 – Invalid number of slots 2 – Invalid size 3 - Exceeds maximum byte total Page 9 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.3 Hop Table Configuration (H) Used by the host to specify the set of frequencies to be used in the hopping sequence. Frequencies are specified in rows and columns. Each row is indexed by the seconds since midnight calculated from the UTC time reported by the GPS receiver modulo the number of rows. The host will calculate the seconds since midnight and row index each second. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Number of rows UCHAR Number of seconds before repeating. Maximum of 25 rows. Default is 25. Number of columns UCHAR Number of frequency changes per second. Maximum of 5 columns. Default is 3. For each row Description Number of bytes to follow including checksum. Value is 5 + (number of row * number of columns) Single ASCII character ‘H’ for hop table configuration. Channel 1 UCHAR Note: rows * columns MUST be less than or equal to 75. st Receive channel for 1 hop in this second. Integer channel value. Valid range is 1 to 81. Channel 2 UCHAR Receive channel for 2nd hop second. Channel 3 UCHAR Receive channel for 3 hop in this second. Channel n UCHAR Receive channel for nth hop in this second. rd Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Description Number of bytes to follow including checksum. Always 4for this message. Single ASCII character ‘h’ for hop table configuration acknowledge. Values are: 0 – Accepted 1 – Invalid channel 2 – Invalid size 3 – Invalid channel sequence Possible Hop Table Channels and Associated Frequencies: Channel Receive Frequency Page 10 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC Number 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 2401024 2402048 2403072 2403096 2494120 2495144 2407168 2408192 2409216 2410240 2411264 2412288 2413312 2414336 2415360 2416384 2417408 2418432 2419456 2420480 2421504 2422528 2423552 2424576 2425600 2426624 2427648 2428672 2429696 2430720 2431744 2432768 2433792 2434816 2435840 2436864 2437888 2438912 2439936 2440960 2441984 2443008 2444032 2445056 2446080 2447104 2448128 2449152 2450176 2451200 2452224 2453248 2454272 2455296 Page 11 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 2456320 2457344 2458368 2459392 2460824 2461848 2462872 2463896 2464920 2465536 2466560 2467584 2468608 2469632 2470656 2471680 2472704 2473728 2474752 2475776 2476800 2477824 2478848 2479872 2480896 2481920 2482944 Default Hop Table Channels: Row Column Channel Number 57 54 50 58 52 48 60 10 46 42 12 62 44 40 14 38 64 18 16 Page 12 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 66 68 32 20 72 70 30 34 78 74 28 76 24 81 26 55 53 49 59 51 47 61 11 45 41 13 63 43 39 15 37 65 19 17 67 69 31 21 73 71 29 33 79 75 27 77 25 23 Page 13 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.4 Hop Table Row Index (I) Defines the transmit and receive frequencies for the next 1 second interval by specifying the row index into the Hop Table. Sent by Host: Data Element Base Type Instances Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘I’ for hop table row index. Length USHORT Command UCHAR Hop Table Index UCHAR Index into the Hop table configured at startup. Indexed by seconds since midnight modulo number of rows in Hop Table. Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘i’ for hop table row index. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Values are: 0 – Accepted 4 – Invalid Index Page 14 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.5 Transmit Slot Data (T) The Transmit Slot Data message is used by the host to instruct the RF module on which slot of the slots defined in the Framing Configuration to broadcast the supplied data. The slot, number of bytes and the data are specified. Data is only broadcast for the next time period as defined by the framing configuration. Data must be received by the radio no later than 50 msec prior to the 1PPS. Only 1 TX slot per unit is allowed (i.e. no multiple broadcasts within a single frame). Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Slot UCHAR Size USHORT Data UCHAR[Size] Description Number of bytes to follow including checksum. Value is 6 + value of Size) Single ASCII character ‘T’ for Transmit Slot Data. Must be one of the slots defined in the framing configuration. Range of values is 1 to Number of slots. A value of 0 is not used. Number of bytes to be broadcast. Length is limited by the size of the slot defined in the framing configuration and the maximum size for a single transmission. The size will be the width of the slot. If the data Data to be broadcast. First byte [index 0] is first to be broadcast over the air. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘t’ for Transmit Slot Data acknowledgement. Values are: 0 – Accepted 1 – Invalid slot 2 – Invalid size Page 15 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.6 Receive Slot Data (r) A Receive Slot Data message is sent at the conclusion of each slot regardless of whether data was received or not. If no data was received, then the Size field specifies 0, the data field is omitted, the received CRC is 0, the calculated CRC is 0, and the RSSI is the valued that was sampled during the slot. Sent by RF Module: Data Element Base Type Instances Description Length USHORT Command UCHAR Slot UCHAR Size USHORT Data UCHAR[Size] TX CRC USHORT Must be one of the slots defined in the framing configuration. Number of bytes received. Length is limited by the size of the slot defined in the framing configuration. Data received. . First byte [index 0] is first to be received over the air. Field is omitted if length is 0. Transmitted CRC. Calculated by transmitter. RX CRC USHORT Calculated CRC on the receive side. RSSI UCHAR Received Signal strength indicator. SNR UCHAR Approximation of Signal to noise ration 0-255 representing 0-25.5 dB. At 10 dB, running at .01 BER. Number of bytes to follow including checksum. Value is 12 + value of Size). Single ASCII character ‘r’ for Receive Slot Data. Sent by Host: No acknowledgement. Assumed that new data will with the next frequency hop. Page 16 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.7 Broken Mode Report (b) A Broken Mode Report message is sent to the GTT controller whenever a failure is detected. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Number of bytes to follow including checksum. Value is 4 + number of failures). Single ASCII character ‘b’ for Broken Mode Report. UCHAR Count of failure codes to follow. UCHAR Number failures Number Failures of Failure Description of Active failure indications. 1 – No 1 PPS detected 2 – VSWR fault Sent by Host: No acknowledgement. 3.8 Signal Strength Report (s) The Signal Strength Report message is sent to the GTT controller at the end of every frame. There is an RSSI value for each slot in the frame. The report is sent even if none of the slots had data in them. Sent by RF Module: Data Element Base Type Instance Length USHORT Command UCHAR UCHAR Number of slots in the frame For each slot RSSI Description Number of bytes to follow including checksum. Value is 3 + number of slots). Single ASCII character ‘s’ for Signal Strength Report. The RSSI for each slot defined in the framing configuration. Sent by Host: No acknowledgement. Page 17 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.9 Set Serial Number (N) Used by the host controller to set the radio module’s serial number. Sent by Host: Data Element Base Type Instances Description Number of bytes to follow including checksum. Always 13 for this message. Single ASCII character ‘N’ for Set Serial Number. Length USHORT Command UCHAR Serial Number UCHAR[10] Format is: RAyywwssss where RA denotes RF module with OMAP processor (dual core) yy demotes the last two digits of the year and ww is the week since the beginning of the year and ssss is the sequence number as labeled on the radio board. RByywwssss denotes RF module with TMS processor (single core).The yy, ww and ssss fields are the same. Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘n’ for Set Serial Number acknowledge. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Page 18 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.10 Set Attenuation Level (G) Used by the host controller to set the radio module’s transmit attenuation level. Sent by Host: Data Element Base Type Instances Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘G’ for Set Attenuation Level. Length USHORT Command UCHAR Attenuation Level UCHAR Valid range of values is 0-15.A value of 0 is no attenuation and a value of 15 is maximum attenuation. Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘g’ for Set Attenuation Level Acknowledge. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Status UCHAR Values are: 0 – Accepted 5 – Invalid attentuation Page 19 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 3.11 Erase Faults (J) Used by the host controller to clear any existing fault indicators. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 43for this message. Single ASCII character ‘J’ for Erase Faults. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘j’ for Erase Faults acknowledge. Page 20 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 4. Query Messages 4.1 Module Identity Query (D) Used by the host controller to query the make/model and firmware revision of the unit. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘D’ for Query Identity. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Serial Number UCHAR[10] Description Number of bytes to follow including checksum. Always 22 for this message. Single ASCII character ‘d’ for Identity acknowledge. Format is: RMssssssss where RM denotes RF module and ssssssss is the sequence number as labeled on the radio board. Refer to GTT Serial Number Format specification 791000-0205-0 Firmware Revision UCHAR[9] ASCII string representing the revision string. Format is: XX.XX .XXX Leading zeros to be supplied if single digit version number. Page 21 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 4.2 Mode Query (Q) Used by the host controller to query the current operating mode of the unit. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘Q’ for query mode. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Current Mode UCHAR Description Number of bytes to follow including checksum. Always 4 for this message. Single ASCII character ‘q’ for Mode Acknowledge Values are : 0 – Offline Mode 1 – Online Mode 2 – Transmit Test Mode 3 – Programming 4 – Broken Mode Page 22 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 4.3 Framing Configuration Query (C) Used by the host controller to query the current framing configuration of the unit. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3for this message. Single ASCII character ‘C’ for Query Framing Configuration. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR UCHAR Number of slots to follow. Maximum of 255 slots. Default is 186. USHORT Number of bytes in this slot. Maximum size is dictated by the number of slots. Total number of bytes sent per frame cannot exceed 16,000. Number slots/hop For each slot Slot Size of Description Number of bytes to follow including checksum. Value is 4 + (Number of slots * 2). Single ASCII character ‘c’ for Framing Configuration acknowledge. Page 23 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 4.4 Hop Table Configuration Query (A) Used by the host controller to query the Hop Table Configuration of the unit. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘A’ for query Hop Table Configuration. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Number of rows UCHAR Number of seconds before repeating. Maximum of 25 rows. Default is 25. Number of columns UCHAR Number of frequency changes per second. Maximum of 5 columns. Default is 3. For each row Description Number of bytes to follow including checksum. Value is 5 + (number of rows * number of columns) Single ASCII character ‘a’ for Hop Table Configuration acknowledge. Channel 1 UCHAR Note: rows * columns MUST be less than or equal to 75. st Receive channel for 1 hop in this second. Channel 2 UCHAR Receive channel for 2nd hop second. Channel 3 UCHAR Receive channel for 3 hop in this second. Channel n UCHAR Receive channel for nth hop in this second. rd Page 24 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 4.5 Broken Mode (B) Used by the Host to query the reasons behind a Broken Mode report. Sent by Host: Data Element Base Type Instances Length USHORT Command UCHAR Description Number of bytes to follow including checksum. Always 3 for this message. Single ASCII character ‘‘B’ for Query Broken Mode Report. Sent by RF Module: Data Element Base Type Instances Length USHORT Command UCHAR Number of bytes to follow including checksum. Value is 4 + Number of failures) Single ASCII character ‘b’ for Broken Mode Report. UCHAR Count of failure codes to follow. UCHAR Number failures Number Failures Failure of Description of Active failure indications. 1 – No 1 PPS detected 2 – VSWR fault Page 25 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 5. Hardware Interface The following table provides the signal interface to the 20 pin interface connector Pin Number Signal Name Description GND 5V NC NC RXD UART Receive Data Input TXD UART Transmit Data Output J4.7 General Purpose Input/Output GPIO2 General Purpose Input/Output 2 RESET Reset Input – Active High 10 STATUS 11 BOOT Boot Mode Select – Active High 12 1PPS 1 Pulse Per Second Input 13 GND Signal/Power Ground 14 3.3V 3.3VDC Input 15 NC 16 NC 17 GPIO4 General Purpose Input/Output 4 18 GPIO2 General Purpose Input/Output 2 19 GPIO3 General Purpose Input/Output 3 20 GPIO1 General Purpose Input/Output 1 Signal/Power Ground 5VDC Input Status Output Page 26 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 6. Agency Statements FCC Statements Compliance Statement (Part 15.19) This device complies with Part 15 of the FCC Rules. Operation is subject to the following two conditions: 1. This device may not cause harmful interference, and 2. This device must accept any interference received, including interference that may cause undesired operation. Warning (Part 15.21) Changes or modifications not expressly approved by the party responsible for compliance could void the user’s authority to operate the equipment. FCC Interference Statement (Part 15.105 (b) This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection against harmful interference in a residential installation. This equipment generates uses and can radiate radio frequency energy and, if not installed and used in accordance with the instructions, may cause harmful interference to radio communications. However, there is no guarantee that interference will not occur in a particular installation. If this equipment does cause harmful interference to radio or television reception, which can be determined by turning the equipment off and on, the user is encouraged to try to correct the interference by one of the following measures: - Reorient or relocate the receiving antenna. - Increase the separation between the equipment and receiver. - Connect the equipment into an outlet on a circuit different from that to which the receiver is connected. - Consult the dealer or an experienced radio/TV technician for help. RF Exposure (OET Bulletin 65) To comply with FCC/IC RF exposure requirements for mobile transmitting devices, this transmitter should only be used or installed at locations where there is at least 20cm separation distance between the antenna and all persons. To comply with FCC/IC RF exposure limits for general population / uncontrolled exposure, the antenna(s) used for this transmitter must be installed to provide a separation distance of at least 20 cm from all persons and must not be co-located or operating in conjunction with any other antenna or transmitter. Page 27 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC Industry Canada Statements Section 7.1.2 of RSS-GEN Under Industry Canada regulations, this radio transmitter may only operate using an antenna of a type and maximum (or lesser) gain approved for the transmitter by Industry Canada. To reduce potential radio interference to other users, the antenna type and its gain should be so chosen that the equivalent isotropically radiated power (e.i.r.p.) is not more than that necessary for successful communication. User manuals for transmitters equipped with detachable antennas shall also contain the following notice in a conspicuous location: This radio transmitter IC7275A-OPTICOM2 has been approved by Industry Canada to operate with the antenna types listed below with the maximum permissible gain and required antenna impedance for each antenna type indicated. Antenna types not included in this list, having a gain greater than the maximum gain indicated for that type, are strictly prohibited for use with this device. This device has been designed to operate with the antenna(s) listed below, and having a maximum gain of 3.5 dB. Antennas not included in this list or having a gain greater than 3.5 dB are strictly prohibited for use with this device. The required antenna impedance is 50 ohms. List of all Antennas Acceptable for use with the Transmitter Laird # MAF94192 HOW TSEN # S-001-1 Mobile Mark # DM2-2400/1575 Section 7.1.3 of RSS-GEN This Device complies with Industry Canada License-exempt RSS standard(s). Operation is subject to the following two conditions: 1) this device may not cause interference, and 2) this device must accept any interference, including interference that may cause undesired operation of the device. Industrie Canada déclarations Section 7.1.2 du RSS-GEN Aux termes des règlements de l'industrie du Canada, cet émetteur radio peut fonctionner uniquement à l'aide d'une antenne d'un type et un maximum (ou moins) de gain approuvé pour l'émetteur par Industrie Canada. Pour réduire le risque d'interférence aux autres utilisateurs, le type d'antenne et son gain doivent être choisis afin que la puissance isotrope rayonnée équivalente (e.i.r.p.) ne dépasse pas ce qui est nécessaire pour une communication réussie. Page 28 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC Les manuels d'utilisation pour des émetteurs équipés des antennes détachables contiendront également la notification suivante dans un endroit remarquable Cet émetteur radio IC7275A-OPTICOM2 a été approuvé par Industrie Canada pour fonctionner avec les types d'antennes énumérées ci-dessous avec le gain maximal admissible et l'impédance d'antenne requise pour chaque antenne type indiqué. Types d'antenne non inclus dans cette liste, ayant un gain supérieur au maximum gagner indiqué pour ce type, sont strictement interdites pour une utilisation avec cet appareil. Ce dispositif a été conçu pour fonctionner avec l'antenne (s) ci-dessous, et ayant un gain maximum de 3,5 dB. Antennes pas inclus dans cette liste ou ayant un gain supérieur à 3,5 dB sont strictement interdites pour une utilisation avec cet appareil. L'impédance d'antenne requise est de 50 ohms. Liste de toutes les antennes acceptables pour une utilisation avec l'émetteur Laird # MAF94192 HOW TSEN # S-001-1 Mobile Mark # DM2-2400/1575 Section 7.1.3 du RSS-GEN Cet appareil est conforme avec Industrie Canada norme exempte de licence RSS (s). Son fonctionnement est soumis aux deux conditions suivantes: 1) cette appareil peut ne pas causer l'interférence et 2) cet appareil doit accepter toute interférence, y compris les interférences qui peuvent causer un mauvais fonctionnement de l'appareil. OEM Responsibilities to comply with FCC and Industry Canada Regulations The OPTICOMGPS2 Module has been certified for integration into products only by OEM integrators under the following conditions: 1. The antenna(s) must be installed such that a minimum separation distance of 20cm is maintained between the radiator (antenna) and all persons at all times. 2. The transmitter module must not be co-located or operating in conjunction with any other antenna or transmitter. As long as the two conditions above are met, further transmitter testing will not be required. However, the OEM integrator is still responsible for testing their end-product for any additional compliance requirements required with this module installed (for example, digital device emissions, PC peripheral requirements, etc.). IMPORTANT NOTE: In the event that these conditions cannot be met (for certain configurations or co-location with another transmitter), then the FCC and Industry Canada authorizations are no longer considered valid and the FCC ID and IC Certification Number cannot be used on the final product. In these circumstances, the OEM integrator will be Page 29 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC responsible for re-evaluating the end product (including the transmitter) and obtaining a separate FCC and Industry Canada authorization. End Product Labeling The OPTICOMGPS2 Module is labeled with its own FCC ID and IC Certification Number. If the FCC ID and IC Certification Number are not visible when the module is installed inside another device, then the outside of the device into which the module is installed must also display a label referring to the enclosed module. In that case, the final end product must be labeled in a visible area with the following: “Contains Transmitter Module FCC ID: VJB-OPTICOMGPS2” “Contains Transmitter Module IC: 7275A-OPTICOM2” or “Contains FCC ID: VJB-OPTICOMGPS2” “Contains IC: 7275A-OPTICOM2” The OEM of the OPTICOMGPS2 Module must only use the approved antenna(s) listed above, which have been certified with this module. The OEM integrator has to be aware not to provide information to the end user regarding how to install or remove this RF module or change RF related parameters in the user manual of the end product. To comply with FCC and Industry Canada RF radiation exposure limits for general population, the antenna(s) used for this transmitter must be installed such that a minimum separation distance of 20cm is maintained between the radiator (antenna) and all persons at all times and must not be co-located or operating in conjunction with any other antenna or transmitter. Page 30 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC 7. Revision History Date Revision Status Description of Changes March 15, 2012 Active Initial release Page 31 of 31 Copyright © 2000-2012, Global Traffic Technologies, LLC

Source Exif Data:
File Type                       : PDF
File Type Extension             : pdf
MIME Type                       : application/pdf
PDF Version                     : 1.5
Linearized                      : Yes
Author                          : Global Traffic Technologies LLC
Company                         : 3M
Create Date                     : 2012:03:19 15:19:48-05:00
Keywords                        : 79-1000-0452-0
Modify Date                     : 2012:03:19 15:19:51-05:00
Source Modified                 : D:20120319201938
Subject                         : Communications
Tagged PDF                      : Yes
XMP Toolkit                     : Adobe XMP Core 5.2-c001 63.139439, 2010/09/27-13:37:26
Metadata Date                   : 2012:03:19 15:19:51-05:00
Creator Tool                    : Acrobat PDFMaker 10.1 for Word
Document ID                     : uuid:cb0a3122-2a35-4189-b761-fbbac738a4d3
Instance ID                     : uuid:66d0679f-9c85-49fb-9fd4-886346682b76
Format                          : application/pdf
Title                           : RF Module Serial Protocol
Description                     : Communications
Creator                         : Global Traffic Technologies LLC
Producer                        : Adobe PDF Library 10.0
Headline                        : Communications
Page Layout                     : OneColumn
Page Count                      : 31
EXIF Metadata provided by EXIF.tools
FCC ID Filing: VJB-OPTICOMGPS2

Navigation menu