English
Language : 

V2-EVAL Datasheet, PDF (48/64 Pages) Future Technology Devices International Ltd. – Vinculum II Evaluation Board
Document Reference No.: FT_000247
V2-EVAL Vinculum II Evaluation Board Datasheet Version 2.0
Clearance No.: FTDI#148
8.2.1.1 Using the V2-EVAL Terminal ‘Spy’ Mode
The V2-EVAL hardware and terminal utility supports a „Spy‟ mode enabling the V2-EVAL terminal utility to
display data from the VNC2 UART RXD pin, when the VNC2 is communicating with an external UART
device. The following section outlines the steps to connect an external UART device to the VNC2 interface
and enabling the „Spy‟ mode.
1. The first step is to connect an external UART device to the VNC2 UART interface on the V2-EVAL
board. An external device can be connected to the board via I/O connectors CN3 – CN11 or via
the IOBUS connections in prototyping area P1.
2. The next step is to configure the IOMUX configuration settings on the VNC2 device to check that
the UART connections reflect the physical I/O pins being used on the V2-EVAL hardware. The
IOMUX settings are set within the VNC2 software code. A code example showing how to configure
the VNC2 IOMUX settings is shown in Figure 8.3.
if (vos_get_package_type() == VINCULUM_II_64_PIN)
{
// UART to V2EVAL board pins
vos_iomux_define_output(39,IOMUX_OUT_UART_TXD); //UART Tx to pin 39
vos_iomux_define_input(40,IOMUX_IN_UART_RXD); //UART Rx to pin 40
vos_iomux_define_output(41,IOMUX_OUT_UART_RTS_N); //UART RTS# to pin 41
vos_iomux_define_input(42,IOMUX_IN_UART_CTS_N); //UART CTS# to pin 42
}
else // VINCULUM_II_48_PIN
{
// UART to V2EVAL board pins
vos_iomux_define_output(31,IOMUX_OUT_UART_TXD); //UART Tx to pin 31
vos_iomux_define_input(32,IOMUX_IN_UART_RXD); //UART Rx to pin 32
vos_iomux_define_output(33,IOMUX_OUT_UART_RTS_N);//UART RTS# to pin 33
vos_iomux_define_input(34,IOMUX_IN_UART_CTS_N); //UART CTS# to pin 34
}
Figure 8.3: Example IOMUX configuration code
The IOMUX configuration code can also be automatically generated using the Vinculum IOMUX
configuration utility, which is available as part of the Vinculum II development tools.
The IOMUX settings are incorporated into the VNC2 firmware file as part of the VNC2 software
development process. The settings are applied to the VNC2 when the firmware image is
downloaded to the VNC2 device.
3. With the VNC2 device now programmed for UART operation, the next stage is to configure the
V2-EVAL terminal utility for „Spy‟ mode. Open the utility and connect to the board. In the „Board
Control‟ panel select the „Spy‟ button. The step will reconfigure the onboard multiplexer. After
changing to „Spy‟ mode disconnect the terminal connection.
Figure 8.4: V2-EVAL Terminal connection with ‘Spy’ connection enabled
Copyright © 2010 Future Technology Devices International Limited
47