Skip to content

Commit 03132d7

Browse files
committed
patch #8923: Enable TPI for linuxgpio
Submitted by David Mosberger-Tang: * linuxgpio.c (linuxgpio_initpgm): add cmd_tpi entry git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1501 81a1dc3b-b13d-400b-aceb-764788c761c2
1 parent 15bd30d commit 03132d7

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2021-11-27 Joerg Wunsch <[email protected]>
2+
3+
Submitted by David Mosberger-Tang:
4+
patch #8923: Enable TPI for linuxgpio
5+
* linuxgpio.c (linuxgpio_initpgm): add cmd_tpi entry
6+
17
2021-11-27 Joerg Wunsch <[email protected]>
28

39
Submitted by: Milan Kupcevic <[email protected]>

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Current:
1515
- UPDI support added (AVR8X family)
1616
- TPI support for USBtinyISP
1717
- TPI support for ft245r
18+
- TPI support for linuxgpio
1819
- AVR Doper uses libhidapi rather than raw libusb (patch #9033)
1920
- -P net:host:port can use IPv6 now (Posix systems only)
2021
- New configure option: -disable-libusb_1_0
@@ -131,6 +132,7 @@ Current:
131132
(no-id): Use -B <bitclock> rather than -b <baudrate> for linuxspi driver
132133
patch #9304: [Bug #48767] Implemented WinSock variation of "ser_drain(...)" functionality
133134
patch #8996: Remove lock byte read mask (bug#21954, bug#46759)
135+
patch #8923: Enable TPI for linuxgpio
134136

135137
* Internals:
136138
- New avrdude.conf keyword "family_id", used to verify SIB attributes

linuxgpio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ void linuxgpio_initpgm(PROGRAMMER *pgm)
330330
pgm->program_enable = bitbang_program_enable;
331331
pgm->chip_erase = bitbang_chip_erase;
332332
pgm->cmd = bitbang_cmd;
333+
pgm->cmd_tpi = bitbang_cmd_tpi;
333334
pgm->open = linuxgpio_open;
334335
pgm->close = linuxgpio_close;
335336
pgm->setpin = linuxgpio_setpin;

0 commit comments

Comments
 (0)