Advance Technologies; Automate the World.Manual Rev. 2.01Revision Date: October 19, 2005Part No: 50-1D002-2020GEME-2000/3000 SeriesGeneral Embedded
vi List of TablesTable 4-7: DIO Card ... 44Table 4-8: GEME Driver Installation List .
88 Appendix: GEME-VM3000 Series Introduction5. Click Next until the driver installs completely.6. Click Finish and restart the system.
Appendix: GEME-VM3000 Series Introduction 897. The Found New Hardware Wizard window appears aftersystem restarts. Click Next and follow these steps t
90 Appendix: GEME-VM3000 Series IntroductionClick Next.Click Next.Click Finish.
Appendix: GEME-VM3000 Series Introduction 918. Another Found New Hardware Wizard window appearswhen you finish the wizard. Repeat Step 7 until you fi
92 Appendix: GEME-VM3000 Series Introduction10.If you see a yellow question mark appearing in front of adriver name, you will need to setup the driver
Appendix: GEME-VM3000 Series Introduction 93Click Reinstall Driver.Click Next.
94 Appendix: GEME-VM3000 Series IntroductionClick Next.Check Specify a location and then click Next.
Appendix: GEME-VM3000 Series Introduction 95In the Copy manufacture’s files from: text box, input the location ofthe driver installed in Step 5 (for
96 Appendix: GEME-VM3000 Series IntroductionClick Next.
Appendix: GEME-VM3000 Series Introduction 97Click Finish to complete this wizard.Congratulations! This device is working properly.
List of Figures viiList of FiguresFigure 2-1: GEME-2000/3000 Base Unit Dimensions ... 7Figure 2-2: GEME-V2000/V3000/X3000 Base Unit Di
98 Appendix: GEME-VM3000 Series IntroductionThe yellow question mark will disappear.12.Right click on the driver named Multimedia Video Con-troller, w
Appendix: GEME-VM3000 Series Introduction 99Driver Installation for Windows XP EmbeddedFor MPEG4 program development, GEME can take the role ofTarget
100 Appendix: GEME-VM3000 Series IntroductionOverviewViewCreator offers the following features:X 32-bit operation under Windows 98/2000/XPX Angelo ser
Appendix: GEME-VM3000 Series Introduction 101Image ViewThe Image View window displays Full, CIF, and QCIF sizeimages and image effects. Control Panel
102 Appendix: GEME-VM3000 Series IntroductionVideo sizeClick View in the menu bar and select the image size required.The supported video sizes are lis
Appendix: GEME-VM3000 Series Introduction 103Special image effectBorderX Check the Border check box in the Control Panel. A red dashed border will ap
104 Appendix: GEME-VM3000 Series Introduction6.4 Function LibraryThis chapter describes the API for Mpeg4 encode and decode.Users can use these functi
Appendix: GEME-VM3000 Series Introduction 105Encode Functions@ NameAngeloMPEG4_Encode_Initial(Encoder_Index, Local_Address, Quality , Angelo_PortNo,
106 Appendix: GEME-VM3000 Series IntroductionAngeloMPEG4_Encode_InitialEx(Encoder_Index, Local_Address, Bitrate, frame_rate, Angelo_PortNo, Angelo_Cha
Appendix: GEME-VM3000 Series Introduction 107This function initializes the video encoder. Its library supports16 video encoders with the video source
108 Appendix: GEME-VM3000 Series IntroductionAngeloMPEG4_Encode_Save_File_Start contains the file pathname.AngeloMPEG4_Encode_Set_Motion_Detection:Use
Appendix: GEME-VM3000 Series Introduction 109AngeloMPEG4_Encode_Initial(Encoder_Index:Longint; Local_Address:String; Quality:Longint; Angelo_PortNo:L
110 Appendix: GEME-VM3000 Series IntroductionBitrate: Indicates the number of bits per second.frame_rate: Indicates the number of frames that theMPEG4
Appendix: GEME-VM3000 Series Introduction 111int Encoder_Index = 0;int Quality = 0;int Angelo_PortNo = 0;int Angelo_ChannelNo = 0;int Angelo_Color_Fo
112 Appendix: GEME-VM3000 Series Introduction< Delphi >VarEncoder_Index, Result: Longint;Quality: Longint;Bitrate, frame_rate: Longint;Angelo_Po
Appendix: GEME-VM3000 Series Introduction 113AngeloMPEG4_Encode_Set_Callback(Encoder_Index:Longint; lpEncodeCallBackProc:EncodeCallBackProc):Longint;
114 Appendix: GEME-VM3000 Series Introduction< Visual Basic >Dim Encoder_Index As Long, Result As LongPublic Sub encode_callback(ByVal Encoder_I
Appendix: GEME-VM3000 Series Introduction 115Encoder_Index:= 0;Result := AngeloMPEG4_Encode_Set_Callback(Encoder_Index, Encode_Callback);end;AngeloMP
116 Appendix: GEME-VM3000 Series Introductionint Encoder_Index = 0;Result = AngeloMPEG4_Encode_Start(Encoder_Index);Result = AngeloMPEG4_Encode_Stop(E
Appendix: GEME-VM3000 Series Introduction 117@ SyntaxC/C++ (Windows 98/NT/2000/XP)int AngeloMPEG4_Encode_Save_File_Start(int Encoder_Index, char* n_f
Introduction 11 Introduction1.1 Product OverviewThe General Embedded Machine Engine (GEME) is a completesolution for Factory Automation (FA) and Mac
118 Appendix: GEME-VM3000 Series IntroductionFormat: The argument describes the format in which to savethe file.1. m4v file2. avi file3. bothDir: The
Appendix: GEME-VM3000 Series Introduction 119Dir, n_file_name: String;interval_second, format: Longint;beginEncoder_Index:= 0;Dir := “C:\VideoDir”;n_
120 Appendix: GEME-VM3000 Series Introduction@ Argument Encoder_Index: Indicate the channel index for the MPEG4encoder. The range of channels is 0 – 1
Appendix: GEME-VM3000 Series Introduction 121interval, action, X_Start, Y_Start, Width, Height);< Visual Basic >Dim Result As Long, Encoder_Ind
122 Appendix: GEME-VM3000 Series IntroductionResult = AngeloMPEG4_Encode_Set_Motion_Detection(Encoder_Index, area, enable, Threshold, interval, action
Appendix: GEME-VM3000 Series Introduction 123AngeloMPEG4_Decode_Get_FlowRate(Decoder_Index,Byte_Second) – Get the current data flow rate betweenencod
124 Appendix: GEME-VM3000 Series Introduction@ DescriptionAngeloMPEG4_Decode_Set_Callback:This function establishes a notification mechanism between t
Appendix: GEME-VM3000 Series Introduction 125If the connection between encoder and decoder is established,the video data will transfer from encoder t
126 Appendix: GEME-VM3000 Series IntroductionIf the connection between encoder and decoder is established, use this function to stop saving video file
Appendix: GEME-VM3000 Series Introduction 127AngeloMPEG4_Decode_Connect –AngeloMPEG4_Decode_Disconnect –@ SyntaxC/C++ (Windows 98/NT/2000/XP)int Ange
2Introduction1.2 Unpacking ChecklistCheck the shipping carton for any damage. If the shipping cartonand contents are damaged, notify the dealer for a
128 Appendix: GEME-VM3000 Series IntroductionResult = AngeloMPEG4_Decode_Connect(channel, Encoder_IP, Encoder_channel);Result = AngeloMPEG4_Decode_Dis
Appendix: GEME-VM3000 Series Introduction 129Delphi (Windows 98/NT/2000/XP)AngeloMPEG4_Decode_Set_Callback(Decoder_Index:Longint; lpDecodeCallBackPro
130 Appendix: GEME-VM3000 Series Introduction}if((int_status>>2 & 0x01) == 1) //Connection establish{//Prepare DC for Previewint Bitrate = 0
Appendix: GEME-VM3000 Series Introduction 131 1: begin {********* image buffer OK *********} // draw image here end; 2: begin
132 Appendix: GEME-VM3000 Series Introduction@ Argument Decoder_Index: Indicate the channel number of Decoder. The range of channel is 0 ~ 15.ConfigIn
Appendix: GEME-VM3000 Series Introduction 133Dim Result As Long, channel As Long, ConfigIndex As Long, value As Longchannel = 0ConfigIndex = 0value =
134 Appendix: GEME-VM3000 Series Introductioninterval:Longint; action:Longint; X_Start:Longint; Y_Start:Longint; Width:Longint; Height:Longint):Longin
Appendix: GEME-VM3000 Series Introduction 135int area =1;int X_Start = 0;int Y_Start =0;int Width = 160;int Height = 120;Result = AngeloMPEG4_Decode_
136 Appendix: GEME-VM3000 Series IntroductionInterval := 3; // 3 secAction := 1+4; // callback & send motion imagearea =1;X_Start = 0;Y_Start =0;W
Appendix: GEME-VM3000 Series Introduction 137@ Argument Decoder_Index: Indicates the channel number of Decoder. The range of channel is 0 - 15.iWidth
Introduction 31.3 GEME FamilyThe GEME family can be classified by CPU performance into the2000 and 3000 series. It can be further distinguished by th
138 Appendix: GEME-VM3000 Series Introduction@ Return Code0: ERROR_NoError@ Example< VC/BCB >int Result;int channel = 0;int iWidth = 0;int iHeig
Appendix: GEME-VM3000 Series Introduction 139AngeloMPEG4_Decode_Start–AngeloMPEG4_Decode_Stop–@ SyntaxC/C++ (Windows 98/NT/2000/XP)int AngeloMPEG4_De
140 Appendix: GEME-VM3000 Series Introductionvarchannel: Longint;Result: Longint;beginchannel := 0;Result := AngeloMPEG4_Decode_Start(channel);Result
Appendix: GEME-VM3000 Series Introduction 141< Visual Basic >Dim Result As Long, channel As Long, Byte_Second As LongResult = AngeloMPEG4_Decod
142 Appendix: GEME-VM3000 Series IntroductionAngeloMPEG4_Decode_ReInitial(Decoder_Index:Longint; Quality:Longint; Angelo_Video_Format:Longint):Longint
Appendix: GEME-VM3000 Series Introduction 143@ Return Code0: ERROR_NoError@ Example< VC/BCB >int Result;int channel = 0;int Quality =0int Bitra
144 Appendix: GEME-VM3000 Series IntroductionAngelo_Video_Format = 2;Result = AngeloMPEG4_Decode_ReInitial(channel, Quality, Angelo_Video_Format);Resu
Appendix: GEME-VM3000 Series Introduction 145format:1: m4v,2: avi.3: both.@ Return Code0: ERROR_NoError@ Example< VC/BCB >int Result;int channe
146 Appendix: GEME-VM3000 Series Introductionformat := 3; // Save both formatResult := AngeloMPEG4_Decode_Save_File_Start(channel, n_file_name, interv
Appendix: GEME-VM3000 Series Introduction 147int AngeloMPEG4_AVI_2_M4V(char* file_name,unsigned long* iWidth,unsigned long* iHeight,unsigned long* By
4Introduction1.4 SpecificationsGEME-2000,GEME-S2000GEME-V2000GEME-3000,GEME-S3000GEME-V3000,GEME-X3000SBCSBC Model No. EBC-C200 EBC-C200V EBC-P300 EBC
148 Appendix: GEME-VM3000 Series IntroductionByte_Per_Pixel:Longint; var Total_Frame:Longint; var Time_Seconds:Longint):Longint;AngeloMPEG4_Decode_Fil
Appendix: GEME-VM3000 Series Introduction 149Frame_Index: Zero index of the frameCur_Frame_Index: Current frame indexPlayFactor: The speed to play th
150 Appendix: GEME-VM3000 Series IntroductionAngeloMPEG4_Decode_File_Pause(m_Decoder_Channel);AngeloMPEG4_Decode_File_Continue(m_Decoder_Channel);Ange
Appendix: GEME-VM3000 Series Introduction 151Result = AngeloMPEG4_Decode_File_Set_Position(m_Decoder_Channel,m_total_frame/2)Result = AngeloMPEG4_Dec
152 Appendix: GEME-VM3000 Series Introductionbeginm_Decoder_Channel:= 0;Mode := 0; //play oncem_filenam := ‘test1.m4v’;m4v_filename:= ‘test2.m4v’;avi_
Appendix: GEME-VM3000 Series Introduction 153System Functions@ NameAngeloMPEG4_Get_Version(lMpeg4_DLLVersion,AngeloRTV_DLLVersion, Reserved)@ Descrip
154 Appendix: GEME-VM3000 Series Introductionlong Mp4Version[4] = {0}, DLLVersion[4] = {0}, VersionReserved[4] = {0};CString str1, str2;Result = Angel
Appendix: GEME-VM3000 Series Introduction 155Str_AngeloRTV_Version := IntToStr(AngeloRTV_DLLVersion[0]);Str_AngeloRTV_Version := Str_AngeloRTV_Versio
156 Appendix: GEME-VM3000 Series Introduction
Safety Instructions 157Safety InstructionsPlease read and follow all instructions marked on the product andin the documentation before operating the
Introduction 5SystemPower Supply(optional)Universal input AC 100 VAC to 220 VAC, Max. output : +5V 11.5A, +12V 3A, -12V 0.5ADC input: 10VDC to 30VDC,
158 Safety Instructionswork area. Never insert objects of any kind into the ventilation openings.X To avoid electrical shock, always unplug all power
Warranty 159Warranty PolicyThank you for choosing ADLINK. To understand your rights andenjoy all the after-sales services we offer, please read thefo
160 Warranty3. Our repair service is not covered by ADLINK's two-yearguarantee in the following situations:Z Damage caused by not following instr
6Introduction
Base Unit 72 Base UnitThis chapter will familiarize the user with available GEMEinterfaces and connections before getting started.2.1 DimensionsFigur
Copyright 2005 ADLINK TECHNOLOGY INC.All Rights Reserved. The information in this document is subject to change without priornotice in order to improv
8Base UnitFigure 2-2: GEME-V2000/V3000/X3000 Base Unit DimensionsHDDPWRVGACH0CF CAR DCH1 CH2KB/MSRESETIEEE1394CH3USBGPIOLANAC/L INK10/100MCOM1LPT1COM2
Base Unit 9Figure 2-3: GEME-S2000/S3000 Base Unit Dimensions TOP VIEWFRONT VIEWSIDE VIEWPWRHDDKB/MSCOM2 LPT1IEEE1394LAN10/100MCOM1ACT/LINKRESETVGAUSB
10 Base Unit2.2 Base Unit Connector Pin AssignmentsDetailed descriptions and pin-outs for each connector are given inthe following sections.VGA Connec
Base Unit 11AC Input Connector GEME comes with an AC inlet connector that carries 100~240VAC external power input, and features reversed wiring prote
12 Base UnitLAN status LEDPin Signal Name1TD+2TD-3RD+4NC5NC6 RD-7NC8NCTable 2-4: Ethernet (RJ-45) ConnectorLED Color Status FunctionYellow (Speed sta
Base Unit 13COM1/COM2GEME offers two serial communications interface ports: COM 1and COM 2.IRQ and Address SettingThe IRQ and I/O address range are b
14 Base UnitIntegrated PS/2 KBD/MS connectorGEME has a proprietary interface for PS/2 keyboard and mouseconnections. A 6-pin mini-DIN connector is loc
Base Unit 15interface fully supports the IEEE 1394-1995 standard for high-performance serial bus and the IEEE 1394a-2000 supplement.Full IEEE 1394a-2
16 Base UnitPrinter Port ConnectorVideo Capture BNC Connector (GEME-V2000/V3000/X3000)GEME accepts 4 channels standard composite color (PAL,NTSC) or m
Base Unit 17Video resolution is programmable including the square-pixel (640x 480 or 768 x 576) and the broadcast resolution.GPIO Connector (GEME-V20
Getting Service from ADLINKCustomer Satisfaction is top priority for ADLINK Technology Inc.Please contact us should you require any service or assista
18 Base UnitThe I/O lines are internally pulled up and have the followingcharacteristics:Software trigger output : Programmable trigger scale, from 60
Base Unit 19The DC power output is protected by a polyswitch rated at 1.1A.Pin Signal1 +12V2GND3GND4+5VTable 2-17: DC Power Output Connector
20 Base UnitIDE Interface ConnectorGEME has primary IDE interfaces for up to two devices,supporting PIO Mode 3/4 or Ultra DMA/100 IDE devices,includin
Base Unit 21GEME has secondary IDE interfaces on the front panel, support-ing compact flash Type I/II.Pin Signal Name Pin Signal Name1 GND 26 CD1-2DA
22 Base UnitFloppy Interface ConnectorGEME supports up to two floppy drives (360KB, 720KB, 1.2MB,1.44MB, 2.88MB)USB 2.0 Connector (GEME-S2000/S3000)Th
Base Unit 23X Plug & Play and hot swapping for up to 127 external devices is supported. X Compliant with USB Specification Rev. 2.0; individual o
24 Base Unit16 GND 41 GND 66 GND 91 GND17 A8 42 A1 67 A17 92 ABVD218 A13 43 A0 68 A18 93 ABVD119 GND 44 GND 69 GND 94 GND20 A14 45 DATA0 70 A19 95 DAT
Base Unit 25Second CampactFlash Interface (GEME-S2000/S3000)One TYPEI/II compact flush slot on the GEME’s side, supportcompact flash hot swap. The sy
26 Base Unit
Power Supply Unit 273 Power Supply UnitThe entire GEME series can support either AC or DC powersupplies per application requirements. The power suppl
28 Power Supply UnitFigure 3-2: GEME DC type power supply unit dimensions POWER SUPPLYINPUT : 10~30VDCMax. 13A@10VDC POWERFRONT VIEWTOP VIEW SIDE VIEW
Power Supply Unit 293.2 SpecificationsAC Power SupplyThe AC power supply is a triple output 110W switching powersupply, which is designed to meet Har
30 Power Supply UnitInternational StandardsTable 3-3: AC Power Supply - International StandardsDC Power SupplyThe DC power supply is a 72W triple-out
Power Supply Unit 31International StandardsTable 3-6: DC Power Supply - International StandardsSafety standardsUL 1950CSA 22.2 No. 234VDE EN 60950EM
Getting Started 334 Getting Started4.1 Storage SettingsHDD / Compact Flash CardFigure 4-1: HDD/Compact Flash CardNote:1. The diagram above is intende
34 Getting Started4.2 IDE Boot Sequence SettingsThe Phoenix-Award BIOS provides a Setup utility program forspecifying system configuration and setting
Getting Started 35For IDE boot sequence setting, select Advanced BIOS Features:
36 Getting StartedFirst/Second/Third/Other Boot DeviceBIOS attempts to load the operating system from the devices inthe sequence selected in the follo
Getting Started 374.3 IRQ InformationThe IRQ and base address settings in the GEME system are setaccording to the “assembly order” of the PC104 cards
Table of Contents iTable of Contents1 Introduction ... 11.1 Product Overview ..
38 Getting Started4.4 Software SettingsThe GEME system software is installed before shipping accordingto the customers’ configuration options. This se
Getting Started 39After pressing “New” as shown in the screen above, the“Device Configuration” dialog box will appear. Enter thecorresponding PC104 c
40 Getting StartedPress “OK” to save this setting. These new settings will takeeffect once the Windows system is rebooted.
Getting Started 414.5 Supported Software The operating system is responsible for managing core tasks andresource allocation for the hardware. It not
42 Getting Startedonly select the required Windows XP components andfunctions, then organize them to construct a XP EmbeddedOS. As a result of this ar
Getting Started 43Windows CEAs Windows CE is designed with embedded systems in mind, itrequires less storage space than XP Embedded. Windows CEtypica
44 Getting StartedMotion CardsCommunication CardsHSL CardDIO CardModule No.Bus InterfaceDescriptionWin2000, XP & eXP driverWin CE driverLinux driv
Getting Started 45GEME Driver Installation ListNote(1): ADLINK will pre-install the hardware driver, utility, and runt-ime library on GEME. For devel
46 Getting Startedof other Linux releases, please contact ADLINK’s FAE for currentsupport status.
Extension Modules 475 Extension Modules5.1 Extension Modules OverviewProduct seriesThe GEME system is designed to be extendable by one PMC andup to t
ii Table of Contents4.3 IRQ Information... 374.4 Software Settings...
48 Extension ModulesGEME Extension ExampleThe following figure is an example of a GEME system withextension modules. It shows a GEME system with three
Extension Modules 495.2 MPC-8366/8372FeaturesMPC-8366/72 are 6/12-axis serial connection motion controllers.They provide the advanced features as fol
50 Extension ModulesSpecificationsThe following lists summarize the main specifications of the MPC-8366/72 board motion control system.Item Descriptio
Extension Modules 51Motion FunctionMotion Velocity Profile Trapezoidal & S-CurveSingle motionJog moveSingle axis P to P motionChange P/V on the f
52 Extension ModulesAnalog Out DA x 2Resolution: 16 bitsSettling Time: 10mS Max.Output Range: ±10VOutput Coupling: DCOutput Impedance: 30W Max.Output
Extension Modules 53Extension BracketOptional bracket for SSCNET Axis 7-12 splitter and TTL Level Digital Output for PCI-8372 onlyCN3 (A) , CN2 (A)It
54 Extension ModulesSP1 Pin Assignment: MPC-8372/66 I/O Connector Table 5-3: SP1 Pin Assignment: MPC-8372/66 I/O ConnectorMDI# is for general purpose
Extension Modules 55DimensionsFigure 5-2: MPC-8372 PCB Layout and Front PanelSC1: SSCNET connector for Axis 0~5SC2: SSCNET connector for Axis 6~11SP1
56 Extension ModulesFigure 5-3: MPC-8366 PCB Layout and Front PanelSC1: SSCNET connector for Axis 0~5SP1: Daughter Board connectorLED1: Board Status L
Extension Modules 575.3 MPC-8164FeaturesX 16-bit PC104 BusX Axes of step and direction pulse output for controlling stepping or servomotorX Maximum o
Table of Contents iii5.8 PMC-7841G... 77Features ...
58 Extension ModulesCN2 Pin Assignments: Main connectorCN2 is the major connector for the motion control I/O signals.No. Name I/O Function (axis (1) /
Extension Modules 5933 EB2+ I Encoder B-phase (+), (2) 83 EB4+ I Encoder B-phase (+), (4)34 EB2- I Encoder B-phase (-), (2) 84 EB4- I Encoder B-phase
60 Extension ModulesCN3 Pin Assignment: General Purpose DI/DO ports CN3 Pin Signal Name CN3 Pin Signal Name1 DOCOM 2 DOCOM3 DOCOM 4 DOCOM5DO06DO17DO28
Extension Modules 61MPC-8164 DimensionsFigure 5-4: MPC-8164 PCB LayoutFigure 5-5: MPC-8164 Front PanelMPC-8164BUSYCN2 (MOTION)CN3 (DIO)183
62 Extension Modules5.4 MPC-7632/7632AU/7664FeaturesMPC-7632/7632AU/7664 isolated DIO cards provide the followingadvanced features:X PC/104 interfaceX
Extension Modules 63* The first three input channels provide the Change-of-Statefunctionality** Audio spec for MPC-7632AU onlyOptical Isolated Output
64 Extension ModulesCP1 Pin AssignmentThe pin assignment of the 50-pin SCSI connector CP1 for the7632/7632AU/7664 is shown below.No. Name I/O Function
Extension Modules 65CP2 Pin AssignmentThe pin assignment of the 50-pin SCSI connector CP2 for the7664 is shown below.No. Name I/O Function of Axis No
66 Extension ModulesDimensionsFigure 5-6: MPC-7664 PCB layout
Extension Modules 67Figure 5-7: MPC-7632 PCB layoutFigure 5-8: MPC-7632 front panel
iv Table of ContentsAngeloMPEG4_Decode_Set_Callback– ... 128AngeloMPEG4_Decode_Set_Image_Config– ... 131AngeloMPEG4_Decode_S
68 Extension ModulesFigure 5-9: MPC-7632AU PCB layoutFigure 5-10: MPC-7632AU front panelFigure 5-11: MPC-7664 front panel
Extension Modules 695.5 PMC-RTV24GFeaturesX 4-channel full-frame acquisition from single video streamX Up to 30fps in 32-bit, 33MHz PMC busX Color (P
70 Extension ModulesPin AssignmentVideo InputGPIOPIN NO. Function PIN NO. Function1 GND 2 CH0 video in3 CH1video in 4 GND5 GND 6 CH2video in7 CH3video
Extension Modules 71DimensionsFigure 5-12: PCB layout of the PMC-RTV24G & DB-RTV24G
72Figure 5-13: Front panel of PMC-RTV24G for GEME system5.6 PMC-3534GFeaturesX IRQ and I/O address automatically assigned by PCI Plug and PlayX Four R
Extension Modules 73Pin AssignmentDimensionsFigure 5-14: PMC-3534G DimensionsPin RS-2321 DCD, Data carrier detect2 RXD, Receive data3TXD, Transmit da
74 Extension ModulesFigure 5-15: PMC-3534G PCB layout and extension cardFigure 5-16: PMC-3534G Front panel5.7 PMC-3544GFeaturesX IRQ and I/O address a
Extension Modules 75SpecificationsX Compliant with PCI Spec.2.1X Serial communication controller:X 16C550A compatibleX System I/O mapping: assigned b
76 Extension ModulesDimensionsFigure 5-17: PMC-3544G DimensionsFigure 5-18: PMC-3544G PCB layout and extension cardFigure 5-19: PMC-3544G front panel
Extension Modules 775.8 PMC-7841GFeaturesThe PMC-7841G is a Dual-Port Isolated CAN Interface Card withthe following features:X Two independent CAN ne
List of Tables vList of TablesTable 1-1: Items checklist ... 2Table 1-2: GEME Family ...
78 Extension ModulesPin AssignmentTable 5-15: PMC-7841G Pin AssignmentDimensionsFigure 5-20: PMC-7841G DimensionsPin CAN1NC2CAN_L3 Shield4NC5 Case GN
Extension Modules 79Figure 5-21: PMC-7841G PCB layout and extension cardFigure 5-22: PMC-7841G front panel5.9 PMC-7852GFeaturesGeneralX One master ha
80 Extension ModulesCommunications:X Multi-drop full-duplex RS-422 with transformer isolation schemeX Data Rate: 6MbpsX I/O refresh rate: 30.1µs x num
Extension Modules 81LED Indicator: Power statusOperating Temperature: 0 to 600ºCStorage Temperature: -20 to 800ºCPower Consumption: +5V @ 500 mA typi
82 Extension ModulesDimensionsFigure 5-23: PMC-7852G DimensionsFigure 5-24: PMC-7852G PCB layout and extension moduleFigure 5-25: PMC-7852G front pane
Appendix: GEME-VM3000 Series Introduction 83Appendix: GEME-VM3000 Series IntroductionThe GEME-VM3000 series is a new MPEG4 software video com-pressio
84 Appendix: GEME-VM3000 Series IntroductionOptional scaling: Scaling of acquired image or portions of animage is available as follows:X Adjustment o
Appendix: GEME-VM3000 Series Introduction 85Player after installing the XVID CODEC (see ADLINK All-in-OneCD).Save single image file: Individual image
86 Appendix: GEME-VM3000 Series IntroductionDriver Installation for Windows 98/NT/2000/XP1. Insert the Automation All-in-one CD into the CD-ROMdrive a
Appendix: GEME-VM3000 Series Introduction 872. Select GEME 3. Click Software-MPEG44. The driver will begin installing.
Comentarios a estos manuales