Download Timelink Driver



The TMC2203 card is a synchronization card in PCI EXPRESS format allowing and providing a time base of good stability from an IRIG B type synchronization source.Time.

  1. Download Timelink Driver Printer
  2. Download Timelink Driverpack

Signal Input

1 KHz sinusoidal signal modulated in amplitude1 / 3, 1/1 Level 0.5 to 6 V peak-peaks, Isolated by transformer Impedance 600 Ohms
Signal DCLS level TTL or RS422 (coming).

Standort Heilbronn. GLOBES Elektronik GmbH & Co KG Berliner Platz 12, 74072 Heilbronn Deutschland Tel: +49 7131 7810 - 0 Fax: +49 7131 7810 20 Mail: hf-welt@globes.de.

  • Download the latest version of the CCS C Compilers or view the recent changes. New versions include new devices, added driver libraries, new applications examples, features and more! Only users with new compiler download rights or an active maintenance plan may download updates.
  • In this case the driver is located in Download folder, but the location might be different in your case. Unzip the archive TOUCH enable on Mac devices.zip and locate UPDDxxxxxxx.dmg file. Step 2: Double click on the driver UPDDxxxxxxx.dmg.

Time Codes

Compatible with IRIG B12x (x = 0 to 3) according to standard IRIG STANDARD 200-98, AFNOR and IEEE1344
TD, H0 and TU / TD composite time code.

Access to information

The card incorporates registers that allow access to time information on the fly and to program modes of operation.Linux and Windows drivers available as well as examples of code to manage card resources

Specifications

Hardware and Software Requirements:WinDaq Data Acquisition and Playback Software
32-bit Version of Excel

How do I Control WinDaq/XL from VBA?

It is possible to Start and Stop WinDaq/XL and control some of the import options from Visual Basic for Applications (VBA) in Microsoft Excel.

Step 1: Add WinDaqXLVBA Add-In as a Reference to your VBA project.

Go to Tools>>References and put a check mark next to WinDaqXLVBA.

If WinDaqXLVBA does not appear as an available reference you may have to browse for the windaqxl.vba file. Click Browse, then go to C:WinDaqXL folder, select windaqxl.vba. You will need to Browse for all file types to see the .xla file.

Please Note: WinDaq/XL Version 1.60 or greater is needed. Click here to download the latest version.

Timelink

Step 2: Use WinDaqXLVBA functions from Excel VBA in your custom program. If you need access to a WinDaq/XL feature that is not listed below, submit a ticket online.

VBA SyntaxDescription
WinDaqXLVBA.StartRecordingStart Recording using the settings from the last import.
NOTE: If used from a custom form, the form must be hidden before the import will start.
WinDaqXLVBA.StopRecording Stop Recording
WinDaqXLVBA.ShowSetUpFormDisplay the set-up form to define WinDaq/XL settings.
WinDaqXLVBA.SelectStartCell(StartCell As String)Select the Starting Cell.
WinDaqXLVBA.SelectRowsToFill(RowsToFill As String)Select the number of Rows to Fill.
WinDaqXLVBA.TimeStampEnabled(TimeStamp As Boolean)Enable or disable the Time Stamp feature. True = enabled, False = disabled.
WinDaqXLVBA.TriggerImportEnabled(TriggeredImport As Boolean) Enable or disable the Triggered Import feature. True = enabled, False = disabled.
NOTE: This feature must be enabled to use the other trigger options.
WinDaqXLVBA.TriggerAutoReArmEnabled(AutoReArm As Boolean)Enable or disable the Triggered Auto-ReArm feature. True = enabled, False = disabled.
WinDaqXLVBA.TriggerChannels(Chn1 As String, Chn2 As String, Chn3 As String, Chn4 As String)Set up to 4 channels for applying trigger values. Channel designations for triggers 2-4 are optional.
WinDaqXLVBA.TriggerOperatorSelect the operator for each channel with a trigger value. Possible operators are =, >, <, <=, >=
WinDaqXLVBA.TriggerValuesSelect the trigger value for each channel that is set-up.
WinDaqXLVBA.TriggerAndOr Set up to 3 AND/OR operators to add multiple trigger values.

Step 3: Write your custom VBA code. Below is example code of how to use some of the WinDaqXLVBA functions.

Sub ControlWinDaqXL()
WinDaqXLVBA.SelectStartCell ('A5')
WinDaqXLVBA.SelectRowsToFill ('10')
WinDaqXLVBA.TimeStampEnabled (True)
WinDaqXLVBA.TriggerImportEnabled (True)
WinDaqXLVBA.TriggerChannels 1, 2
WinDaqXLVBA.TriggerOperator '<', '>'
WinDaqXLVBA.TriggerValues '0.3', '0.002'
WinDaqXLVBA.StartRecording
End Sub