diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-24 10:08:02 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-24 10:08:02 +0000 |
commit | f9c0357b731e5ca4a5456056bbbe2e4a8a2dc9fe (patch) | |
tree | bce330a99949744d6d51e2e5250c84dd1973ad27 /Projects/Incomplete/AVRISP/Lib | |
parent | bff4dbe1897d8c19b4bb9807e76350465ca1f1c4 (diff) | |
download | lufa-f9c0357b731e5ca4a5456056bbbe2e4a8a2dc9fe.tar.gz lufa-f9c0357b731e5ca4a5456056bbbe2e4a8a2dc9fe.tar.bz2 lufa-f9c0357b731e5ca4a5456056bbbe2e4a8a2dc9fe.zip |
Fixed V2 Protocol READ_FLASH_ISP and READ_EEPROM_ISP handler code in the AVRISP project.
Diffstat (limited to 'Projects/Incomplete/AVRISP/Lib')
-rw-r--r-- | Projects/Incomplete/AVRISP/Lib/V2Protocol.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Projects/Incomplete/AVRISP/Lib/V2Protocol.c b/Projects/Incomplete/AVRISP/Lib/V2Protocol.c index cffb91e02..7bb8f71ca 100644 --- a/Projects/Incomplete/AVRISP/Lib/V2Protocol.c +++ b/Projects/Incomplete/AVRISP/Lib/V2Protocol.c @@ -344,16 +344,7 @@ static void V2Protocol_Command_ReadMemory(uint8_t V2Command) }
Endpoint_Write_Byte(STATUS_CMD_OK);
-
- bool EndpointBankFull = Endpoint_IsReadWriteAllowed();
Endpoint_ClearIN();
-
- /* Ensure data transfer is terminated by a short packet if the last sent bank was completely full */
- if (EndpointBankFull)
- {
- Endpoint_WaitUntilReady();
- Endpoint_ClearIN();
- }
}
static void V2Protocol_Command_ChipErase(void)
|