From bff4dbe1897d8c19b4bb9807e76350465ca1f1c4 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Mon, 24 Aug 2009 09:37:54 +0000 Subject: Fix to V2 Protocol for Fuse/Sig/Lock byte read -- off by one error on the array when writing back the response from the device. FLASH/EEPROM reading and writing currently broken and unfinished, respectively. --- Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c') diff --git a/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c b/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c index 9e6467244..74c8f2024 100644 --- a/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c +++ b/Projects/Incomplete/AVRISP/Lib/V2ProtocolParams.c @@ -37,7 +37,7 @@ #include "V2ProtocolParams.h" /* Non-Volatile Parameter Values for EEPROM storage */ -uint8_t EEMEM EEPROM_Rest_Polarity; +uint8_t EEMEM EEPROM_Rest_Polarity = 0x00; /* Volatile Parameter Values for RAM storage */ static ParameterItem_t ParameterTable[] = @@ -67,11 +67,11 @@ static ParameterItem_t ParameterTable[] = .ParamPrivellages = PARAM_PRIV_READ }, { .ParamID = PARAM_SCK_DURATION, - .ParamValue = 0xFF, + .ParamValue = 0x06, .ParamPrivellages = PARAM_PRIV_READ | PARAM_PRIV_WRITE }, { .ParamID = PARAM_RESET_POLARITY, - .ParamValue = 0x01, + .ParamValue = 0x00, .ParamPrivellages = PARAM_PRIV_WRITE }, { .ParamID = PARAM_STATUS_TGT_CONN, @@ -133,5 +133,5 @@ void V2Params_SetParameterValue(uint8_t ParamID, uint8_t Value) /* The target RESET line polarity is a non-volatile parameter, save to EEPROM when changed */ if (ParamID == PARAM_RESET_POLARITY) - eeprom_write_byte(&EEPROM_Rest_Polarity, Value); + eeprom_write_byte(&EEPROM_Rest_Polarity, Value); } -- cgit v1.2.3