Updated the AVRISP-MKII Clone programmer project to be compatible with the latest version of AVR Studio (version 5.1).
Changed the AVRISP-MKII Clone programmer project to report a fixed 3.3V VTARGET voltage on USB AVRs lacking an ADC instead of 5V to prevent warnings in AVR Studio 5.1 when programming XMEGA devices.
This commit is contained in:
parent
1482f77826
commit
18b82b3575
11 changed files with 58 additions and 28 deletions
|
@ -60,11 +60,11 @@ static ParameterItem_t ParameterTable[] =
|
|||
|
||||
{ .ParamID = PARAM_SW_MINOR,
|
||||
.ParamPrivileges = PARAM_PRIV_READ,
|
||||
.ParamValue = 0x0D },
|
||||
.ParamValue = FIRMWARE_VERSION_MINOR },
|
||||
|
||||
{ .ParamID = PARAM_VTARGET,
|
||||
.ParamPrivileges = PARAM_PRIV_READ,
|
||||
.ParamValue = 0x32 },
|
||||
.ParamValue = (uint8_t)(3.3 * 10) },
|
||||
|
||||
{ .ParamID = PARAM_SCK_DURATION,
|
||||
.ParamPrivileges = PARAM_PRIV_READ | PARAM_PRIV_WRITE,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue