-
Datei
Konsole_Inhalt_Debugging.txt
couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed couldn't write MPSSE commands to FT2232 ftdi_write_data: usb bulk write failed
in „Blink_LED Programm mit SAM7-EX256“ · Mikrocontroller und Digitale Elektronik ·
-
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-56Q.............................................................. 19 3.2.4.1 FT2232H-56Q pins used in an RS232 interface .............................................20 3.2.4.2 FT2232H-56Q pins used
in „LC Filter nach LDO nötig?“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
DS_FT2232H.pdf
FT2232H-56Q.............................................................. 19 3.2.4.1 FT2232H-56Q pins used in an RS232 interface .............................................20 3.2.4.2 FT2232H-56Q pins used
-
PDF
DS_FT2232H.pdf
FT2232H-56Q.............................................................. 19 3.2.4.1 FT2232H-56Q pins used in an RS232 interface .............................................20 3.2.4.2 FT2232H-56Q pins used
-
PDF
FT2232_datasheet.pdf
I C, and SPI bus. The FT2232D is fully pin to pin compatible with the previous FT2232C and FT2232L devices. In addition to supporting all of the FT2232C / FT2232L functionallity, the FT2232D has an additional interface mode, CPU
in „AVR-Programmierung via USB mit FT2232“ · Mikrocontroller und Digitale Elektronik ·
-
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
in „FT2232H Asyncron FIFO“ · Mikrocontroller und Digitale Elektronik ·
-
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 ·
-
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
demo_at91sam7_blink_flash-progtarget.txt
openocd.c:94 main(): $URL: http://svn.berlios.de/svnroot/repos/openocd/trunk/src/openocd.c $ Error: ft2232.c:241 ft2232_read(): couldn't read the requested number of bytes from FT2232 device (0 < 81) Error: ft2232.c:385 ft2232_send_and_recv(): couldn't read from FT2232 make: *** [program] Error -1
in „Programmierung mit ARM - AT91SAM7S256“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
VHDL-Code.txt
downto 0) := x"00"; begin SIWU <= '1'; --If not used tie this pin to Vcc tx <= '1' when TXE = '0' and ft2232_wait = 1 and rdempty = '0' else '0'; rx <= '1' when RXF = '0' else '0'; state_tx<= '1' when tx_ = '1' else '0'; state_rx <= '1' when bus_oe_mode > 1 and rx = '1' and tx = '0' else '0'; rdreq <= '1'
-
PDF
OpenOCD_LM3S2965.pdf
download/category/4- openocd?download=34%3Aopenocd-040 (schnell) Wichtig: Archivdatei „libusb-win32_ft2232_driver-100223.zip“ auspacken und Treiber für Entwicklungsboard ersetzen. 3. External Tools configurieren: 3.1 OpenOCD Programmer konfigurieren Name: OpenOCD Programmer Location: Pfad zu openocd.exe
in „Luminary LM3S8962 mit GDB über FTDI Debuggen“ · Mikrocontroller und Digitale Elektronik ·
-
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
configfile_und_flashscript.txt
#daemon configuration telnet_port 4444 gdb_port 3333 #interface interface ft2232 ft2232_device_desc "Olimex OpenOCD JTAG TINY A" ft2232_layout "olimex-jtag" ft2232_vid_pid 0x15BA 0x0004 jtag_speed 3 #use combined on interfaces or targets that can't set TRST/SRST separately reset_config
in „LPC2148 Flash schreiben / debuggen klappt nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
program_cfg_program_script_debug_cfg_debug_script.txt
###################### #daemon configuration telnet_port 4444 gdb_port 3333 #interface interface ft2232 ft2232_device_desc "Olimex OpenOCD JTAG TINY A" ft2232_layout jtagkey ft2232_vid_pid 0x15BA 0x0003 jtag_speed 2 jtag_nsrst_delay 200 jtag_ntrst_delay 200 #use combined on interfaces or targets that
in „probleme beim debuggen. brauche dringend hilfe!“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Vinculum_Firmware_User_Manual_V2.4_Rev_3.pdf
...................................................................... 49 Table 6.15 FT232/FT245/FT2232 Commands .............................................................................................. 49 Table 6.16 FT232/FT245/FT2232 Modem Control Bytes............................................................................. 50 Table 6.17 FT232/FT245/FT2232 Data Characteristics Bytes.................................................................... 51 Table 6.18 FT232/FT245/FT2232 Flow Control Bytes...................................................
in „USB-Stick-Interface STI 100“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
sam7x256.pdf
sam7x256.cfg 1 #daemon configuration 2 telnet_port 4444 3 gdb_port 3333 4 5 #interface 6 interface ft2232 7 ft2232_device_desc "Olimex OpenOCD JTAG ARM-USB-TINY-H" 8 ft2232_layout "olimex-jtag" 9 ft2232_vid_pid 0x15ba 0x002a 10 11 12 #use combined on interfaces or targets that can't set TRST/SRST separately
in „AT91SAM7X265 fabrikneu starten“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
sam7x256.pdf
sam7x256.cfg 1 #daemon configuration 2 telnet_port 4444 3 gdb_port 3333 4 5 #interface 6 interface ft2232 7 ft2232_device_desc "Olimex OpenOCD JTAG ARM-USB-TINY-H" 8 ft2232_layout "olimex-jtag" 9 ft2232_vid_pid 0x15ba 0x002a 10 11 12 #use combined on interfaces or targets that can't set TRST/SRST separately
in „AT91SAM7X startet nicht“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AN232B-04_DataLatencyFlow.pdf
hardware designers when changing from a traditional RS232 based solution to one that uses the FT232R, FT2232C (UART mode) or FT232BM USB to serial interface devices. Much of the information in this application note also applies to the FT245R, FT2232C (FIFO mode) and FT245BM USB to parallel FIFO interface
in „STM32f103 DMA Uart Rx ist zu langsam“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ds2232c_15.pdf
FT2232C Dual USB UART / FIFO I.C. 8.3 USB Bus Powered and Self Powered Configuration Figure 8 - USB Bus Powered Configuration Ferrite Bead 470R USB "B" VCC Connector 1 27R 0.1uF 2 3 42 14 31 46 3 27R V V V
-
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. ·
-
Bild
DigiKey Etikett eines elektronischen Bauteils
PO# IDX: 2 DigiKey 701 Brooks Ave South, Thief River Falls, MN 56 01 USA PN 768-1024-1-ND MFR PN FT2232HL-REEL Part Desc IC USB HS DUAL UART/FIFO 64-LQFP Lot Code Date Code COO TW USAV RoHS ROHS3 COMP MSL 3 STATIC SENSITIVE NOV-2024 MID 19860
in „[V] 5St. FTDI_ FT2232HL 64LQFP neu OVP (12€)“ · Markt · · Fotos
-
Bild
DigiKey Etikett eines elektronischen Bauteils
# 4605 PO# IDX: 2 701 Brooks Ave South, Thief River Falls, MN 56101 USA PN 768-1024-1-ND MFR PN FT2232HL-REEL Part Desc IC USB HS DUAL UART/FIFO 64-LQFP COO TW RoHS ROHS3 COMP MSL 3 STATIC SENSITIVE NOV-2024
in „[V] 5St. FTDI_ FT2232HL 64LQFP neu OVP (12€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI FT2232_HL im 64LQFP neu OVP (11€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI FT2232_HL im 64LQFP neu OVP (11€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI FT2232_HL im 64LQFP neu OVP (11€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI FT2232_HL im 64LQFP neu OVP (12€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI_ FT2232_HL im 64LQFP neu OVP (12€)“ · Markt · · Fotos
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: 2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW CB2 Rechnungsnr.:
in „[V] 5St. FTDI_ FT2232_HL im 64LQFP neu OVP (13€)“ · Markt · · Fotos
-
PDF
ft2232_cable.pdf
translation. 1 SI/WUB ADBUS0/TCK/SK 40 TCK 1 TCK 2 BCBUS3 ADBUS1/TDI/DU 39 TDI 2 TDI E Operation of FT2232 at 2.5V IO voltage 3 38 E is out of spec of 3.0 V minimum. However BCBUS2 ADBUS2/TDO/D1 TDO 3 TDO 4 37 experimental setup works fine at 6 MHz. BCBUS1 ADBUS3/TMS/CS TMS 4 TMS 5 BCBUS0 ADBUS4/GPIOL0
-
Bild
Mouser Electronics Versandetikett
MOUSER ELECTRONICS www.mouser.com Kundenauftragsnummer: Position: Artikelnr.: FT2232HL Kundenteilenr.: Artikelbeschreibung: USB HS to Dual UART/ FTDI USB-IC-Schnittstelle RoHS: Konform Menge: 5 Herkunftsland: TW Rechnungsnr.: CB2
in „[V] 5St. FTDI FT2232_HL im 64LQFP neu OVP (10€)“ · Markt · · Fotos
-
Bild
Screenshot eines Logikanalysators
Intronix LogicPort Logic Analyzer - H:\Data\Modellbahn\Roco\Romocotion\TW120_eeprom_01.LPF File File Options Setup Acquisition View Help Sample Rate 20MHz Logic Threshold 1.40v Pre-Trigger Buffer 1% Measurement A Source CLK1 Signal Wire Pattern Edge Cursor A CLK D3 L 0 -160us -140us -120us -100us -80us -60us -40us -20us T+139us +20us +40us +60us +80us +100us +120us +140us +160us MOSI D1 H 1 MISO D2 H 1 CS D0 L J 0
in „[?] libmpsse.dll, Fehler bei SPI-Lesen“ · Softwareentwicklung · · Oszi-Bilder
-
PDF
STMxx-Discovery-Versaloon-How2.pdf
www.versaloon.com/bbs/viewtopic.php?p=43#p43 I just modified openocd_update , and added --enable-ft2232_libftdi to the "./configure" around line 80 , so i had support for both hw dongles. [code] ./configure --enable-vsllink --enable-ft2232_libftdi --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 ·
-
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
-
Bild
Google-Suchergebnisse zu libMPSSE SPI-ReadWrite
www.ftdichip.com > Support > spi_write SPI_Write - FTDI Knowledgebase This function will write data from the FT2232C to an external device using the SPI protocol. ... The init condition, write control buffer, write data buffer, wait ... de.mathworks.com > matlabcentral > answers > 518... FTDI libMPSSE 0.6 SPI_ReadWrite
in „FTDI libMPSSE SPI-Problem“ · Softwareentwicklung · · Screenshots
-
PDF
811EVBK.pdf
prevents in-circuit programming and debugging. USB Device Controller Functions Device Overview An FT2232 device from Future Technology Devices International Ltd manages USB-to-serial conversion. The FT2232 is factory configured by Luminary Micro to implement a JTAG/SWD port (synchronous serial) on channel
in „Luminary Evalution Board als ARM JTAG“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Handgezeichnetes Anschlussdiagramm FT2232 zu Mikrocontroller
FT2232 3V3 BD0 BD1 GND 3V3 5 (RXD) 11 (TXD) 14...BOOT 4...RST GND
in „OrangePi RV2 und ESP32-C5 im Hands-on“ · Mikrocontroller und Digitale Elektronik · · Diagramme
-
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. ·
-
Datei
cablelist.txt
LLBBC_INTERFACE1:2:0x00:0x10:0x00:0x00 ftdijtag ftdi 1500000 0x0403:0x6010:FTDIJTAG:1:0x00:0x10:0x00:0x00 ft2232test ftdi 8000000 0x0403:0x6010:FT2232TEST:1:0x00:0x10:0x00:0x80 l_motctl ftdi 8000000 0x0403:0x6010:L_MOTCTL:1:0x00:0x00:0x00:0x40 l_motctl_avr avr109 8000000 0x0403:0x6010:L_MOTCTL:1:0x00:0x00:0x00
-
Datei
ftd2xx.h
Header - must be 0xffffffff DWORD Version; // Header - 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
in „FTDI und plattformunabhängige Programmierung“ · Softwareentwicklung ·
-
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. ·
-
PDF
2014_Liste.pdf
Philips DC3840 4 7,50 € http://www.ulrichradig.de/hom e/index.php/projekte/uC- kamera RFM12S 4 2,00 € FT2232HL 1 4,00 € AT86RF230-ZU 2 2,50 € WRL-10822 Roving Networks 2 25,00 € https://www.sparkfun.com/pro ducts/10822 Kreatel IP-STB 1710 2 4,00 € ohne FB, ohne Netzteil http://www.mikrocontroller.ne t/articles
in „[V]erkaufe div. Dinge, DC3840, Dockstar, VIP1710, GSM, WRL-10822“ · Markt ·