Skip to content
Alexey Brodkin edited this page May 22, 2019 · 1 revision

Work with a particular FTDI device

  1. Figure out serial number of desired device:

    djtgcfg enum
    Found 2 device(s)
    
    Device: HSDK
        Product Name:   DesignWare ARC SDP
        User Name:      HSDK
        Serial Number:  25164200001f
    
    Device: TE0604-03
        Product Name:   JTAG-ONB4
        User Name:      TE0604-03
        Serial Number:  251633000355
    
  2. Specify FTDI serial number in the configuration script:

    diff --git a/tcl/board/snps_em_sk_v2.2.cfg b/tcl/board/snps_em_sk_v2.2.cfg
    index 6ebce71fa..df4455198 100644
    --- a/tcl/board/snps_em_sk_v2.2.cfg
    +++ b/tcl/board/snps_em_sk_v2.2.cfg
    @@ -23,6 +23,8 @@
     # EM Starter Kit has built-in FT2232 chip, which is similiar to Digilent HS-1.
     source [find interface/ftdi/digilent-hs1.cfg]
    
    +ftdi_serial 251633000355
    +
     # EM11D reportedly requires 5 MHz. Other cores and board can work faster.
     adapter_khz 5000
    
Clone this wiki locally