You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a simple FTDI serial interface (Ft232R) with a ISP header.
The header pins are connected :
Reset to RI, sck to DSR, miso to CTS and mosi to DCD.
The FTDI drivers are installed, and i can see and configure the FT232 and the FT231X with FTPROG.
Using the AVRDUDE-Sertag version i can program any ATMega with an SPI interface.
To do this, specifu ft0 as port, and for a blank processor you have to select a lower speed with the -B 1000 option. This is slow. so only use it to change the clock setting according to the hardware, and clear the DIV8 fuse. Then you can program at high speed by ommitting the _B parameter.
This works fine with windows 10 Probably also (Win7 and Win8), but the latest 6.30 version reports errors, you have to recompile AVRDUDE with the ftdilib or the libusb-win32 lib.
So the request for a new release is to include all drivers needed to enable sync bitbang with AVRDUDE in the next release.
The text was updated successfully, but these errors were encountered:
Hi @HannesBulk ,
which version of avrdude are you using? The staging one is compiled with
Configuration summary:
----------------------
DO HAVE libelf
DO HAVE libusb
DO HAVE libusb_1_0
DON'T HAVE libftdi1
DON'T HAVE libftdi
DON'T HAVE libhid
DO HAVE libhidapi
DO HAVE pthread
DISABLED doc
ENABLED parport
I still get the error mesages. To use FTDI Sync bitbang you need the Libftdi, to acces the serial port you have to specify not serials but ft0 (if its the only or first ftdi chip).
This works with a special version of AVRDUDE (a modified AvrDude from Sertag), but not with the latest (6.3) version. The normal serial bitbang is very slow, but the modified version with FTDI sync bitbang support works with almost the same speed as a UsBasp. Since most (official) Arduino (nano) pcb's are usisin a FTDI ft230rl chip, you only need to connect the specified pins on the ftdi chip to the isp header to program the processor, freeing the bootloader space, allowing to program without an external programmer !!!
I have a simple FTDI serial interface (Ft232R) with a ISP header.
The header pins are connected :
Reset to RI, sck to DSR, miso to CTS and mosi to DCD.
The FTDI drivers are installed, and i can see and configure the FT232 and the FT231X with FTPROG.
Using the AVRDUDE-Sertag version i can program any ATMega with an SPI interface.
To do this, specifu ft0 as port, and for a blank processor you have to select a lower speed with the -B 1000 option. This is slow. so only use it to change the clock setting according to the hardware, and clear the DIV8 fuse. Then you can program at high speed by ommitting the _B parameter.
This works fine with windows 10 Probably also (Win7 and Win8), but the latest 6.30 version reports errors, you have to recompile AVRDUDE with the ftdilib or the libusb-win32 lib.
So the request for a new release is to include all drivers needed to enable sync bitbang with AVRDUDE in the next release.
The text was updated successfully, but these errors were encountered: