#include "V2ProtocolParams.h"\r
\r
/* Non-Volatile Parameter Values for EEPROM storage */\r
-uint8_t EEMEM EEPROM_Rest_Polarity;\r
+uint8_t EEMEM EEPROM_Rest_Polarity = 0x00;\r
\r
/* Volatile Parameter Values for RAM storage */\r
static ParameterItem_t ParameterTable[] = \r
.ParamPrivellages = PARAM_PRIV_READ },\r
\r
{ .ParamID = PARAM_HW_VER,\r
- .ParamValue = 0x01,\r
+ .ParamValue = 0x00,\r
.ParamPrivellages = PARAM_PRIV_READ },\r
\r
{ .ParamID = PARAM_SW_MAJOR,\r
.ParamPrivellages = PARAM_PRIV_READ },\r
\r
{ .ParamID = PARAM_SW_MINOR,\r
- .ParamValue = 0x00,\r
+ .ParamValue = 0x0C,\r
.ParamPrivellages = PARAM_PRIV_READ },\r
\r
{ .ParamID = PARAM_VTARGET,\r
.ParamPrivellages = PARAM_PRIV_READ },\r
\r
{ .ParamID = PARAM_SCK_DURATION,\r
- .ParamValue = MAX_SPI_SETTINGS,\r
+ .ParamValue = 0x06,\r
.ParamPrivellages = PARAM_PRIV_READ | PARAM_PRIV_WRITE },\r
\r
{ .ParamID = PARAM_RESET_POLARITY,\r
- .ParamValue = 0x01,\r
+ .ParamValue = 0x00,\r
.ParamPrivellages = PARAM_PRIV_WRITE },\r
\r
{ .ParamID = PARAM_STATUS_TGT_CONN,\r
\r
/* The target RESET line polarity is a non-volatile parameter, save to EEPROM when changed */\r
if (ParamID == PARAM_RESET_POLARITY)\r
- eeprom_write_byte(&EEPROM_Rest_Polarity, Value);\r
+ eeprom_write_byte(&EEPROM_Rest_Polarity, Value); \r
}\r