Created
October 13, 2018 09:57
-
-
Save matthijskooijman/697d2131fe2a2a4cff67d06fd0af29a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pinout based on http://doswa.com/2010/08/24/avrdude-5-10-with-ftdi-bitbang.html | |
# I could not use the builtin ft232r and others, since these all need | |
# different handshaking pins | |
programmer | |
id = "ftdi_cts_dtr"; | |
desc = "FTDI adapter with CTS and DTR exposed"; | |
type = "ftdi_syncbb"; | |
connection_type = usb; | |
miso = 1; # RXD | |
sck = 3; # CTS | |
mosi = 0; # TXD | |
reset = 4; # DTR | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment