Added PROGRAM_FLASH_ISP and PROGRAM_EEPROM_ISP handler code to the V2 Protocol handler in the AVRISP project, programming complete checks not yet complete.

This commit is contained in:
Dean Camera 2009-08-24 11:04:05 +00:00
parent f9c0357b73
commit 92adb00f8e
4 changed files with 70 additions and 8 deletions

View file

@ -82,6 +82,13 @@ void V2Protocol_DelayMS(uint8_t MS)
_delay_ms(1);
}
uint8_t V2Protocol_WaitForProgrammingComplete(uint16_t PollAddress, uint8_t ProgrammingMode)
{
// TODO
return STATUS_CMD_OK;
}
uint8_t V2Protocol_WaitWhileTargetBusy(void)
{
uint8_t TimeoutMS = TARGET_BUSY_TIMEOUT_MS;