aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-08-27 13:12:44 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-08-27 13:12:44 +0000
commit922e60192dc089654a82be0d789fb7a8ecc47039 (patch)
tree71fc15df3d3cc959dd7f16a69da42677d9897330 /Projects
parent023838fe4aad5b5f0da00b767afd1400d4e40b4c (diff)
downloadlufa-922e60192dc089654a82be0d789fb7a8ecc47039.tar.gz
lufa-922e60192dc089654a82be0d789fb7a8ecc47039.tar.bz2
lufa-922e60192dc089654a82be0d789fb7a8ecc47039.zip
Condensed SCSI command functions in the LowLevel Mass Storage Host demo, to save on FLASH space.
Fixed issue in AVRISP project where the target RESET line was being toggled before it was tristated, causing problems synchronising to some targets (thanks to Mike Alex).
Diffstat (limited to 'Projects')
-rw-r--r--Projects/AVRISP/Lib/V2ProtocolTarget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/AVRISP/Lib/V2ProtocolTarget.c b/Projects/AVRISP/Lib/V2ProtocolTarget.c
index c36295ea0..d06f06510 100644
--- a/Projects/AVRISP/Lib/V2ProtocolTarget.c
+++ b/Projects/AVRISP/Lib/V2ProtocolTarget.c
@@ -92,8 +92,8 @@ void V2Protocol_ChangeTargetResetLine(bool ResetTarget)
}
else
{
- RESET_LINE_PORT &= ~RESET_LINE_MASK;
RESET_LINE_DDR &= ~RESET_LINE_MASK;
+ RESET_LINE_PORT &= ~RESET_LINE_MASK;
}
}