Download AJA USB Modules Interconnect (COM12) Driver

(COM12)Download AJA USB Modules Interconnect (COM12) Driver

The TLIN1441-Q1 is a local interconnect network (LIN) physical layer transceiver, compliant to LIN 2.2A and ISO/DIS 17987–4.2 standards, with an integrated low dropout (LDO) voltage regulator and watchdog. If you have connected ZYBO via micro USB cable you can access the console via the built-in FTDI USB-UART bridge. Once you connect the cable to your Ubuntu laptop /dev/ttyUSB0 and /dev/ttyUSB1 should appear. Use picocom to connect to the virtual serial port: sudo apt-get install picocom sudo picocom -b 115200 /dev/ttyUSB0.

Tyco Electronics, a standing member of the USB-IF (USB Implementers Forum), offers a wide range of products to meet your interconnect needs. Tyco Electronics offers products that accommodate the two differentially driven data wires that provide bi-directional, simultaneous signals for USB 2.0 (480 mbps) and USB 1 (1.5 & 12 mbps). Clean up cable installations with L-com's economical 12-Port Category 6 wall mounted patch panel. Each block features industry standard 110 style connections for fast terminations. Write-on surfaces make port identification simple and clean. Update 2017-11-01: Here’s a newer tutorial on creating a custom IP with AXI-Streaming interfaces Tutorial Overview In this tutorial we’ll create a custom AXI IP block in Vivado and modify its functionality by integrating custom VHDL code. We’ll be using the Zynq SoC and the MicroZed as a hardware platform. For simplicity, our custom IP will be a multiplier which our processor will be.

Sciologness

The most complete collection of drivers for your computer!

Drivers Catalog ⇒ Port Devices ⇒ AJA Video ⇒ AJA USB Modules Interconnect (COM4)

Drivers Installer for AJA USB Modules Interconnect (COM4)

If you don’t want to waste time on hunting after the needed driver for your PC, feel free to use a dedicated self-acting installer. It will select only qualified and updated drivers for all hardware parts all alone. To download SCI Drivers Installer, follow this link.

Device:AJA USB Modules Interconnect (COM4) Drivers Installer
Version:2.0.0.18
Date:2021-02-16
File Size:1.12 Mb
Supported OS:Windows 2000, Windows XP, Windows Vista, Windows 7, Windows 8
Download Drivers Installer

AJA USB Modules Interconnect (COM4): Drivers List

1 drivers are found for ‘AJA USB Modules Interconnect (COM4)’. To download the needed driver, select it from the list below and click at ‘Download’ button. Please, ensure that the driver version totally corresponds to your OS requirements in order to provide for its operational accuracy.

AJA USB Modules Interconnect (COM4): Supported Models of Laptops

We have compiled a list of popular laptops models applicable for the installation of ‘AJA USB Modules Interconnect (COM4)’. By clicking at the targeted laptop model, you’ll be able to look through a comprehensive list of compatible devices.

#ManufacturerModelDevices
1HPGS220AAR-ABA s3200t39 Devices List
2CompaqPresario 7110US 470016-08339 Devices List
3LenovoThinkPad W530 (2463A64)35 Devices List
4IBM264757G43 Devices List
5HP310-1210f36 Devices List
6HPS5621f36 Devices List
7LenovoThinkCentre M91p (4518ND9)26 Devices List
8PanasonicCF-53AAGHCDM42 Devices List
9SonySVT13125CGS33 Devices List
10NECPC-VY13MRXJJEUR15 Devices List
11SonyVPCW150XB30 Devices List
12LenovoThinkPad T420 (4236AP0)31 Devices List
13HPFJ464AAR-ABA a6554f37 Devices List
14LGF1-2A36A36 Devices List
15FujitsuFMVNB75H29 Devices List
16FujitsuFMVXDBJH2Z26 Devices List
17DellInspiron 3800 G600GT25 Devices List
18LenovoThinkPad X220 (4291UXS)37 Devices List
19FujitsuFMVLX70UNC32 Devices List
20LenovoThinkCentre M58e (7298Y49)23 Devices List
Qnap Enters the Market with a Trio of TS-x31 Home NAS
Cooler Master Adds V Semi-Modular PSUs to Its Inventory
Raidmax Vampire Case Gets Revised by Winterfall Version
Sony Updates eXtra Bass Series of Headphones

Update 2017-11-01: Here’s a newer tutorial on creating a custom IP with AXI-Streaming interfaces

Tutorial Overview

In this tutorial we’ll create a custom AXI IP block in Vivado and modify its functionality by integrating custom VHDL code. We’ll be using the Zynq SoC and the MicroZed as a hardware platform. For simplicity, our custom IP will be a multiplier which our processor will be able to access through register reads and writes over an AXI bus.

The multiplier takes in two 16 bit unsigned inputs and outputs one 32 bit unsigned output. A single 32 bit write to the IP will contain the two 16 bit inputs, separated by the lower and higher 16 bits. A single 32 bit read from the peripheral will contain the result from the multiplication of the two 16 bit inputs. The design doesn’t serve much purpose, but it is a good example of integrating your own code into an AXI IP block.

Requirements

Before following this tutorial, you will need to do the following:

  • Vivado 2014.2
  • Platform Cable USB II (or equivalent JTAG programmer)

Start from a base project

You can do this tutorial with any existing Vivado project, but I’ll start with the base system project for the MicroZed that you can access here:

Create the Custom IP

Download aja usb modules interconnect (com12) driver windows 10
  1. With the base Vivado project opened, from the menu select Tools->Create and package IP.
  2. The Create and Package IP wizard opens. If you are used to the ISE/EDK tools you can think of this as being similar to the Create/Import Peripheral wizard. Click “Next”.
  3. On the next page, select “Create a new AXI4 peripheral”. Click “Next”.
  4. Now you can give the peripheral an appropriate name, description and location. Click “Next”.
  5. On the next page we can configure the AXI bus interface. For the multiplier we’ll use AXI lite, and it’ll be a slave to the PS, so we’ll stick with the default values.
  6. On the last page, select “Edit IP” and click “Finish”. Another Vivado window will open which will allow you to modify the peripheral that we just created.

At this point, the peripheral that has been generated by Vivado is an AXI lite slave that contains 4 x 32 bit read/write registers. We want to add our multiplier code to the IP and modify it so that one of the registers connects to the multiplier inputs and another to the multiplier output.

Add the multiplier code to the peripheral

You can find the multiplier code on Github at the link below. Download the “multiplier.vhd” file and save it somewhere, the location is not important for now.

Note that these steps must be done in the Vivado window that contains the peripheral we just created (not the base project).

  1. From the Flow Navigator, click “Add Sources”.
  2. In the window that appears, select “Add or Create Design Sources” and click “Next”.
  3. On the next window, click “Add Files”.
  4. Browse to the “multiplier.vhd” file, select it and click “OK”.
  5. Make sure you tick “Copy sources into IP directory” and then click “Finish”.

The multiplier code is now added to the peripheral, however we still have to instantiate it and connect it to the registers.

(COM12)

Modify the Peripheral

At this point, your Project Manager Sources window should look like the following:

  1. Open the branch “my_multiplier_v1_0 – arch_imp”.
  2. Double click on the “my_multiplier_v1_0_S00_AXI_inst” file to open it.
  3. The source file should be open in Vivado. Find the line with the “begin” keyword and add the following code just above it to declare the multiplier and the output signal:
  1. Now find the line that says “– Add user logic here” and add the following code below it to instantiate the multiplier:
  1. Find this line of code “reg_data_out <= slv_reg1;” and replace it with “reg_data_out <= multiplier_out;”.
  2. In the process statement just a few lines above, replace “slv_reg1” with “multiplier_out”.
  3. Save the file.
  4. You should notice that the “multiplier.vhd” file has been integrated into the hierarchy because we have instantiated it from within the peripheral.
  5. Click on “IP File Groups” in the Package IP tab of the Project Manager.
  6. Click the “Merge changes from IP File Group Wizard” link.
  7. The “IP File Groups” should now have a tick.
  8. Now click “Review and Package IP”.
  9. Now click “Re-package IP”.

The peripheral will be packaged and the Vivado window for the peripheral should be automatically closed. We should now be able to find our IP in the IP catalog. Now the rest of this tutorial will be done from the original Vivado window.

Add the IP to the design

  1. Click the “Add IP” icon.
  2. Find the “my_multiplier” IP and double click it.
  3. The block should appear in the block diagram and you should see the message “Designer Assistance available. Run Connection Automation”. Click the connection automation link.
  4. Click the “my_multiplier_0” peripheral from the drop-down menu.
  5. In the window that appears, set Clock connection to “Auto” and click “OK”.
  6. The new block diagram should look like this:
  7. Generate the bitstream.
  8. When the bitstream is generated, select “Open the implemented design” and click “OK”.

Export the hardware design to SDK

Once the bitstream has been generated, we can export our design to SDK where we can then write code for the PS. The PS is going to write data to our multiplier and read back the result.

  1. In Vivado, from the File menu, select “Export->Export hardware”.
  2. In the window that appears, tick “Include bitstream” and click “OK”.
  3. Again from the File menu, select “Launch SDK”.
  4. In the window that appears, use the following settings and click “OK”.

At this point, the SDK loads and a hardware platform specification will be created for your design. You should be able to see the hardware specification in the Project Explorer of SDK as shown in the image below.

You are now ready to create a software application to run on the PS.

Create a Software application

At this point, your SDK window should look somewhat like this:

To make things easy for us, we’ll use the template for the hello world application and then modify it to test the multiplier.

  1. From the File menu, select New->Application Project.
  2. In the first page of the New Project wizard, choose a name for the application. I’ve chosen hello_world. Click “Next”.
  3. On the templates page, select the “Hello World” template and click “Finish”.
  4. The SDK will generate a new application which you should find in the Project Explorer as in the image below.

The hello_world folder contains the Hello World software application, which we will modify to test our multiplier.

Modify the Software Application

Now all we need to do is modify the software application to test our multiplier peripheral.

  1. From the Project Explorer, open the hello_world/src folder. Open the “helloworld.c” source file.
  2. Replace all the code in this file with the following.

Save and close the file.

Test the design on the hardware

To test the design, we are using the MicroZed board from Avnet. Make the following setup before continuing:

  1. On the MicroZed, set the JP1, JP2 and JP3 jumpers all to the 1-2 position.
  2. Connect the USB-UART (J2) to a USB port of your PC.
  3. Connect a Platform Cable USB II programmer (or similar device) to the JTAG connector. Connect the programmer to a USB port of your PC.

Now you need to open up a terminal program on your PC and set it up to receive the test messages. I use Miniterm because I’m a Python fan, but you could use any other terminal program such as Putty. Use the following settings:

  • Comport - check your device manager to find out what comport the MicroZed popped up as. In my case, it was COM12 as shown below.
  • Baud rate: 115200bps
  • Data: 8 bits
  • Parity: None
  • Stop bits: 1

Now that your PC is ready to receive the test messages, we are ready to send our bitstream and software application to the hardware.

Download Aja Usb Modules Interconnect (com12) Driver Windows 10

  1. In the SDK, from the menu, select Xilinx Tools->Program FPGA.
  2. In the Program FPGA window, we select the hardware platform to program. We have only one hardware platform, so click “Program”.
  3. The bitstream will be loaded onto the Zynq and we are ready to load the software application. Select the hello_world folder in the Project Explorer, then from the menu, select Run->Run.
  4. In the Run As window, select “Launch on Hardware (GDB)” and click “OK”.
  5. The application will be loaded on the Zynq PS and it will be executed. Look out for the results in your terminal window!

We’re sending two 16-bit inputs 0x02 and 0x03 and the result is 0x06 as expected.

Source code

The TCL build script and source code for this project is shared on Github here:

Download aja usb modules interconnect (com12) driver windows 10

Download Aja Usb Modules Interconnect (com12) Driver Download

For instructions on rebuilding the project from sources, read my post on version control for Vivado projects.

Download Aja Usb Modules Interconnect (com12) Drivers

See also