diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-27 07:14:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-27 07:14:57 +0000 |
commit | 022035839e62c52299b7191f6967ac57ccf1bd94 (patch) | |
tree | 933bf0491d3b34d295fd2e51a49cbd2ddb356b13 /Projects/AVRISP/Lib/ISP | |
parent | 8cd7e118e950d18ec0dd0d716005930ec45fd299 (diff) | |
download | lufa-022035839e62c52299b7191f6967ac57ccf1bd94.tar.gz lufa-022035839e62c52299b7191f6967ac57ccf1bd94.tar.bz2 lufa-022035839e62c52299b7191f6967ac57ccf1bd94.zip |
Remove missed timer 0 init code in the ISP protocol handler in the AVRISP project. Switch the XPROG protocol target communications handler over to using Timer 1 COMA/COMB ISRs for the two physical layers, rather than COMA/ICR1. Speed up bit-banged USART mode slightly.
Diffstat (limited to 'Projects/AVRISP/Lib/ISP')
-rw-r--r-- | Projects/AVRISP/Lib/ISP/ISPTarget.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Projects/AVRISP/Lib/ISP/ISPTarget.c b/Projects/AVRISP/Lib/ISP/ISPTarget.c index a3a8b2289..29cb18e62 100644 --- a/Projects/AVRISP/Lib/ISP/ISPTarget.c +++ b/Projects/AVRISP/Lib/ISP/ISPTarget.c @@ -122,9 +122,6 @@ uint8_t ISPTarget_WaitForProgComplete(const uint8_t ProgrammingMode, const uint1 break;
case PROG_MODE_WORD_VALUE_MASK:
case PROG_MODE_PAGED_VALUE_MASK:
- TCNT0 = 0;
- TIFR0 = (1 << OCF1A);
-
do
{
SPI_SendByte(ReadMemCommand);
|