diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-24 13:39:47 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-24 13:39:47 +0000 |
commit | f070902bdb96795c497bce283288affaa9a4fc5b (patch) | |
tree | 1a009c5d038bce5f65f04e89d7b22bd66ca66ca4 /Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h | |
parent | 8cb8f1cfddf0d9a76442f8fdafe207ac7e6fe340 (diff) | |
download | lufa-f070902bdb96795c497bce283288affaa9a4fc5b.tar.gz lufa-f070902bdb96795c497bce283288affaa9a4fc5b.tar.bz2 lufa-f070902bdb96795c497bce283288affaa9a4fc5b.zip |
Fix endianness of LOAD_ADDRESS command data, add correct PROGRAM_FLASH_ISP/PROGRAM_EEPROM_ISP polling and endpoint bank clearing, add hardware delays/timeouts to the V2 Protocol handler in the AVRISP project.
Diffstat (limited to 'Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h')
-rw-r--r-- | Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h b/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h index d67f84708..2156225a5 100644 --- a/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h +++ b/Projects/Incomplete/AVRISP/Lib/V2ProtocolTarget.h @@ -48,7 +48,7 @@ #include "V2ProtocolParams.h"
/* Macros: */
- #define TARGET_BUSY_TIMEOUT_MS 200
+ #define TARGET_BUSY_TIMEOUT_MS 150
/* External Variables: */
extern uint32_t CurrentAddress;
@@ -58,7 +58,7 @@ void V2Protocol_ChangeTargetResetLine(bool ResetTarget);
void V2Protocol_DelayMS(uint8_t MS);
uint8_t V2Protocol_WaitForProgComplete(uint8_t ProgrammingMode, uint16_t PollAddress, uint8_t PollValue,
- uint8_t DelayMS, bool IsFlashMemory, uint8_t ReadMemCommand);
+ uint8_t DelayMS, uint8_t ReadMemCommand);
uint8_t V2Protocol_WaitWhileTargetBusy(void);
void V2Protocol_LoadExtendedAddress(void);
|