Renamed signature_validation AVR8 target config param to signature_verification
This commit is contained in:
@@ -209,9 +209,9 @@ namespace Targets::Microchip::Avr8
|
|||||||
|
|
||||||
this->activated = true;
|
this->activated = true;
|
||||||
|
|
||||||
if (this->targetConfig.signatureValidation) {
|
if (this->targetConfig.signatureVerification) {
|
||||||
/*
|
/*
|
||||||
* Validate the target signature.
|
* Verify the target signature.
|
||||||
*
|
*
|
||||||
* The signature obtained from the device should match what we loaded from the target description file.
|
* The signature obtained from the device should match what we loaded from the target description file.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -39,8 +39,8 @@ namespace Targets::Microchip::Avr8
|
|||||||
this->preserveEeprom = targetNode["preserve_eeprom"].as<bool>(this->preserveEeprom);
|
this->preserveEeprom = targetNode["preserve_eeprom"].as<bool>(this->preserveEeprom);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (targetNode["signature_validation"]) {
|
if (targetNode["signature_verification"]) {
|
||||||
this->signatureValidation = targetNode["signature_validation"].as<bool>(this->signatureValidation);
|
this->signatureVerification = targetNode["signature_verification"].as<bool>(this->signatureVerification);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (targetNode["stop_all_timers"]) {
|
if (targetNode["stop_all_timers"]) {
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ namespace Targets::Microchip::Avr8
|
|||||||
* Determines whether Bloom will check for an AVR signature mismatch between the signature in the TDF and the
|
* Determines whether Bloom will check for an AVR signature mismatch between the signature in the TDF and the
|
||||||
* connected target signature.
|
* connected target signature.
|
||||||
*/
|
*/
|
||||||
bool signatureValidation = true;
|
bool signatureVerification = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether Bloom will stop all timer peripherals on the target, when target execution is stopped.
|
* Determines whether Bloom will stop all timer peripherals on the target, when target execution is stopped.
|
||||||
|
|||||||
Reference in New Issue
Block a user