-
Datei
FT2232H_minimal_D.vhd
fifo_reset, fifo_check, fifo_write, fifo_wait); signal fsm_fifo: fsm_fifo_type:=fifo_reset; type fsm_ft2232h_type is(ft2232h_fetch, ft2232h_write, ft2232h_check, ft2232h_wait, ft2232h_bram_wait); signal fsm_ft2232h: fsm_ft2232h_type:=ft2232h_wait; signal D_out: std_logic_vector(7 downto 0):=(others => '0
-
PDF
INTERFACE_FT2232H.pdf
FT2232H Dual High Speed USB to Multipurpose UART/FIFO IC Datasheet Version 2.6 Document No.: FT_00006Clearance No.: FTDI#77 Future Technology Devices International Ltd FT2232H Dual High Speed USB to Multipurpose
in „LC Filter nach LDO nötig?“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
DS_FT2232H.pdf
FT2232H Dual High Speed USB to Multipurpose UART/FIFO IC Datasheet Version 2.6 Document No.: FT_00006Clearance No.: FTDI#77 Future Technology Devices International Ltd FT2232H Dual High Speed USB to Multipurpose
-
PDF
DS_FT2232H.pdf
FT2232H Dual High Speed USB to Multipurpose UART/FIFO IC Datasheet Version 2.6 Document No.: FT_00006Clearance No.: FTDI#77 Future Technology Devices International Ltd FT2232H Dual High Speed USB to Multipurpose
-
Datei
main.c
Description=%s\n",Description); printf("ftHandle=0x%x\n",ftHandleTemp); } if ((int)ID == 67330064 && FT2232H_found == 100){ printf("FOUND FT2232H @ %i\n",numDev_int); FT2232H_found = numDev_int; } numDev_int++; } if(FT2232H_found == 100){ printf("FT2232H NOT FOUND!\n"); //return 0; } ftStatus = FT_Open(FT2232H_found
in „FPGA Board mit FT2232H und Spartan7“ · Projekte & Code ·
-
PDF
TN_167_FIFO_Basics.pdf
Device FIFO Mode Driver (VCP or D2XX) FT245B/FT245R/FT2232D/FT240X Asynchronous VCP or D2XX FT232H/FT2232H Asynchronous VCP or D2XX FT232H/FT2232H Synchronous D2XX only Table 2.3 Driver Applications 8 Product Page Document Feedback Copyright © Future Technology Devices International Limited Technical Note
in „FT2232H Asyncron FIFO“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
FT2232H_minimal_A.vhd
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use ieee.math_real.all; entity FT2232H_minimal_A is Port( clk100: in std_logic; -- FT2232H D: out std_logic_vector(7 downto 0); RXF: in std_logic; TXE: in std_logic; RD: out std_logic; WR: out std_logic; SIWU: out std_logic; CLKOUT: in
-
Datei
FT2232H_minimal_C.vhd
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use ieee.math_real.all; entity FT2232H_minimal_C is Port( clk100: in std_logic; -- FT2232H D: out std_logic_vector(7 downto 0); RXF: in std_logic; TXE: in std_logic; RD: out std_logic; WR: out std_logic; SIWU: out std_logic; CLKOUT: in
-
PDF
AN_165_Establishing_Synchronous_245_FIFO_Communications_using_a_Morph-IC-II.pdf
an FTDI low cost USB-FPGA development platform. The major components of this module are the FTDI FT2232H and an Altera Cyclone II FPGA. The FT2232H is a dual channel USB communications device which converts USB data into a range of different interfaces including UART, Synchronous 245 FIFO, Asynchronous
-
Datei
FT2232H_minimal_B.vhd
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; use ieee.math_real.all; entity FT2232H_minimal_B is Port( clk100: in std_logic; -- FT2232H D: out std_logic_vector(7 downto 0); RXF: in std_logic; TXE: in std_logic; RD: out std_logic; WR: out std_logic; SIWU: out std_logic; CLKOUT: in std_logic; --60MHz FTDI OE: out std_logic; PWRSAV: out std_logic); end FT2232H_minimal_B; architecture Behavioral of FT2232H_minimal_B is component fifo_generator_0 IS PORT( rst : IN STD_LOGIC; wr_clk : IN STD_LOGIC; rd_clk : IN STD_LOGIC; din : IN STD_LOGIC_VECTOR(7 DOWNTO
-
Datei
AudioInterface.vhd
STD_LOGIC; AD_MCLK : OUT STD_LOGIC; AD_SDOUT : IN STD_LOGIC; AD_SCLK : OUT STD_LOGIC; --- UART PMOD --- FT2232H_TX_PMOD : OUT STD_LOGIC; FT2232H_RX_PMOD : IN STD_LOGIC--; --- UART --- -- FT232R_TX : OUT STD_LOGIC; -- FT232R_RX : IN STD_LOGIC ); --*************************************************************
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
AudioInterface.vhd
STD_LOGIC; AD_MCLK : OUT STD_LOGIC; AD_SDOUT : IN STD_LOGIC; AD_SCLK : OUT STD_LOGIC; --- UART PMOD --- FT2232H_TX_PMOD : OUT STD_LOGIC; FT2232H_RX_PMOD : IN STD_LOGIC--; --- UART --- -- FT232R_TX : OUT STD_LOGIC; -- FT232R_RX : IN STD_LOGIC ); --*************************************************************
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
ft2232h_fifo.v
module ft2232h_fifo #( parameter dw = 8, parameter aw = 4 ) (/* Interface to FT2232H */ input usb_clk, input ft_full, input usb_offline, output reg [dw-1:0] data2ft, output reg ft_wr_n, output [7:0] ft_debug, /*
-
Datei
ft2232h_fifo.v
module ft2232h_fifo #( parameter dw = 8, parameter aw = 4 ) (/* Interface to FT2232H */ input usb_clk, input ft_full, input usb_offline, output reg tx_nextdata, output [dw-1:0] fifo_rd_data, output reg tx_wr, output
in „FT2232H in FT245 FIFO Mode - kein Burst möglich“ · FPGA, VHDL & Co. ·
-
Datei
UM-FT2232H.xml
ÿþ< ? x m l v e r s i o n = " 1 . 0 " e n c o d i n g = " u t f - 1 6 " ? > < F T _ E E P R O M > < C h i p _ D e t a i l s > < T y p e > F T 2 2 3 2 H < / T y p e > < / C h i p _ D e t a i l s > < U S B _ D e v i c e _ D e s c r i p t o r > < V I D _ P I D > 0 < / V I D _ P I D > < i d V e n d o r > 0 4 0 3 < / i d V e n d o r > < i d P r o d u c t > 6 0 1 0 < / i d P r o d u c t > < b c d U S B > U S B 2 . 0 < / b c d U S B > < / U S B _ D e v i c e _ D e s c r i p t o r > < U S B _ C o n f i g _ D e s c r i p t o r > < b m A t t r i b u t e s > < R e m o t e W a k e u p E n a b l e d > f a
in „MachXO2 USB-Programmieradapter - Billige Alternative oder unbrauchbar?“ · FPGA, VHDL & Co. ·
-
Datei
ft2232h_controller.v
module ft2232h_fifo_controller ( //fifo of our design fifo_clk, fifo_re, fifo_q, fifo_empty, fifo_usew, // FT fifo ft_clk, // INPUT! ft_wr, ft_rd, ft_oe, ft_data_in, ft_full ); output wire fifo_clk; output reg fifo_re
in „Empfehlenswerte Chips zur FPGA <-> PC Kommunikation über USB“ · FPGA, VHDL & Co. ·
-
Bild
Schaltplan eines CY7C65632 Mikrocontrollers
$1 CY7C65632 VCC_A 5*3 DD-1 3 FT600_D_N VCC_D 27 DD+1 4 FT600_D_P 25 OVR#1 28 VREG 10 XIN 6 DD-2 FT2232H_D_N 11 XOUT 7 DD+2 FT2232H_D_P 24 OVR#2 17 RESET 12 DD-3 23 SELFPWR 13 DD+3 18 TEST/I2C_SCL OVR#3 20 PWR#/I2C_SDA 26 GND 1 D- 2 D+ DD-4 15 EXP 16 DD+4 19 OVR#4 RREF 8 DD-3 10k R35 3.3V 10k R36 649
in „USB-Hub funktioniert nicht.“ · Mikrocontroller und Digitale Elektronik · · Schaltpläne
-
Bild
Liste von AVRDUDE Programmierern
is more detail about each programmer in the AVRDUDE configuration file. 2232hio 2232hio based on FT2232H with buffer and LEDs (TPI, ISP) 4232h FT2232H programmer (TPI, ISP) 89isp Atmel at89isp cable (TPI, ISP) 89isp Atmel at89isp cable (TPI, ISP) abcmini ABCmini Board, aka Dick Smith HOTCHIP (TPI, ISP
in „Arduino Uno Bootloader verwenden“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
USB_Read_EXT_UART_FT2232H_8MBaud_Right_new.py
wurden data = ser.read(1000000) if len(data) > 0: sr.extend(data) ser.close() aufnahme = open("UART_FT2232H_8MBaud_Signals_Right_10s.bin",'wb') aufnahme.write(sr) aufnahme.close()
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
USB_Read_EXT_UART_FT2232H_8MBaud_Left_new.py
if len(data) > 0: sr.extend(data) ser.close() aufnahme = open("UART_testtest5.bin",'wb') #("UART_FT2232H_8MBaud_Signals_Left_10s.bin",'wb') aufnahme.write(sr) aufnahme.close() # In[ ]:
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
PokeFlash.cpp
tchar.h> #pragma comment(lib, "FTD2XX.lib") #include "FTD2XX.h" #define DEV_DESC "Dual RS232-HS B" //"FT2232H MiniModule A" #define BUFSIZE (4*1024*1024) // 4MB - huge buffer to hold all the commands that are sent down the USB to the FT2232H #define BLOCKSIZE (8*1024) // We read/write chunks of 8kb to the
in „SPI mit FT2232H“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
audio_decode_14.py
matplotlib.pyplot as plt fig, (ax1, ax2, ax3, ax4) = plt.subplots(4, sharex=True) filename = "UART_FT2232H_8MBaud_Signals_Left.bin" bytesperpacket = 14 sample_rate = 32000 #Format: #0AAAAAA1 #AAAAAAA0 #AAAAAAA0 #AAAABBB0 #BBBBBBB0 #BBBBBBB0 #BBBBBBB0 #0CCCCCC0 #CCCCCCC0 #CCCCCCC0 #CCCCDDD0 #DDDDDDD0 #DDDDDDD0
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
DecodeUART_External_FT2232H_Module_8MBaud_Right_new.py
#!/usr/bin/env python # coding: utf-8 import os import matplotlib.pyplot as plt filename = "UART_FT2232H_8MBaud_Signals_Right_10s.bin" bytesperpacket = 14 #Format # 0 Lout Lout Lout Lout Lout Lout 1 # Lout Lout Lout Lout Lout Lout Lout 0 # Lout Lout Lout Lout Lout Lout Lout 0 # Lout Lout Lout Lout Lin
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
DecodeUART_External_FT2232H_Module_8MBaud_Left_new.py
In[4]: import os import matplotlib.pyplot as plt # In[5]: filename = "UART_testtest5.bin" #"UART_FT2232H_8MBaud_Signals_Left_10s.bin" bytesperpacket = 14 #Format # 0 Lout Lout Lout Lout Lout Lout 1 # Lout Lout Lout Lout Lout Lout Lout 0 # Lout Lout Lout Lout Lout Lout Lout 0 # Lout Lout Lout Lout Lin
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
ftd2xx.h
FT_PROGRAM_DATA version // 0 = original // 1 = FT2232C extensions // 2 = FT232R extensions // 3 = FT2232H extensions // 4 = FT4232H extensions WORD VendorId; // 0x0403 WORD ProductId; // 0x6001 char *Manufacturer; // "FTDI" char *ManufacturerId; // "FT" char *Description; // "USB HS Serial Converter"
in „FTDI und plattformunabhängige Programmierung“ · Softwareentwicklung ·
-
PDF
STMxx-Discovery-Versaloon-How2.pdf
enable-maintainer-mode [/code] You will need "libftdi devel" installed on your distro (>= 1.17 is needed for FT2232H) http://www.intra2net.com/en/developer/libftdi/ On Ubuntu just use Synaptic , and you'll get >= 1.17 SW: 1: Start OOCD sudo openocd -f interface/signalyzer-lite.cfg -f target/stm32.cfg 2: telnet localhost
in „Use your STMxx-Discoveryboard as JTAG (SWD)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
DS_FT232H.pdf
target device to GPIOL3 line before changing the TDO (data out line). TDO TCK GPIOL3 RTCK ARM CPU FT2232H Figure 4.15 Adaptive Clocking Interconnect TDO changes on falling edge of TCK TDO TCK RTCK Figure 4.16 Adaptive Clocking Waveform Adaptive clocking is not enabled by default. For further details on
-
PDF
SCH_ESP32-Ethernet-Kit_A_V1.2_20200528.pdf
Switch 5V-3.3V IP101GRI MAC RESET_N 5V ESP32 JTAG D+/D- Module B USB USB-UART B CNN USB-JTAG TX/RX (FT2232H) LED*2 DTR/RTS Auto EN+IO0 IO0+EN Prog Key*2 ESP32-ETHERNET-KIT_A A A Title <ESP32-Ethernet-Kit_A> SizePage Name Rev A3 <01 : DesignBlock> V1.2onfidential and Proprietary Date: Thursday, May 28, Sheet1
in „Arduino Library für Netzwerkchip W5500?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
avrdude.pdf
the USB, using libusb as a platform abstraction layer. The avrftdi adds support for the FT2232C/D, FT2232H, and FT4232H devices. These all use the MPSSE mode, which has a specific pin mapping. Bit 1 (the lsb of the byte in the config file) is SCK. Bit 2 is MOSI, and Bit 3 is MISO. Bit 4 usually reset. The
in „AVRDude als Tool in AVR Studio 4 einbinden“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
MachXO2BreakoutBoardEvaluationKitUsersGuide.pdf
Interfaces Schematic Component/Interface Type Reference Description Circuits USB Controller Circuit U2: FT2232H USB-to-JTAG interface and dual USB UART/FIFO IC USB Mini-B Socket I/O J7:USB_MINI_B Programming and debug interface Components U3: LCMXO2- LCMXO2 FPGA 7000HE-4TG144C 7000-LUT device packaged in a
in „Statemachine springt in falsche "states" warum?“ · FPGA, VHDL & Co. ·
-
PDF
kicad_8450_dcm_liste_neu_v3.pdf
USB to 8-Bit SPI / FT1248 Bridge, SSOP-20 FT2232D Full Speed Double Channel USB UART/FIFO, LQFP-48 FT2232H FT2232Hx, Hi Speed Double Channel USB UART/FIFO, LQFP/QFN-64 FT230XQ Full Speed USB to Basic UART, QFN-16 FT230XS Full Speed USB to Basic UART, SSOP-16 FT231XQ Full Speed USB to Full Handshake UART
in „KiCAD Eeschema, Bibliotheksdokumentation *.dcm als PDF-Datei“ · Platinen ·