diff --git a/CMakeLists.txt b/CMakeLists.txt index 186de7ad..26927be8 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -205,5 +205,4 @@ add_custom_command( ) include(./cmake/Installing.cmake) - include(./cmake/Packaging.cmake) diff --git a/build/scripts/Targets/TargetDescriptionFiles/AVR8/Avr8TargetDescriptionFile.php b/build/scripts/Targets/TargetDescriptionFiles/AVR8/Avr8TargetDescriptionFile.php index 17e9924d..8f299059 100644 --- a/build/scripts/Targets/TargetDescriptionFiles/AVR8/Avr8TargetDescriptionFile.php +++ b/build/scripts/Targets/TargetDescriptionFiles/AVR8/Avr8TargetDescriptionFile.php @@ -118,8 +118,12 @@ class Avr8TargetDescriptionFile extends TargetDescriptionFile $output->eepromPageSize = $eepromMemorySegment->pageSize; } - $output->ocdRevision = $this->stringService->tryStringToInt($this->getPropertyValue('ocd', 'ocd_revision')); - $output->ocdDataRegister = $this->stringService->tryStringToInt($this->getPropertyValue('ocd', 'ocd_datareg')); + $output->ocdRevision = $this->stringService->tryStringToInt( + $this->getPropertyValue('ocd', 'ocd_revision') + ); + $output->ocdDataRegister = $this->stringService->tryStringToInt( + $this->getPropertyValue('ocd', 'ocd_datareg') + ); $eepromPeripheral = $this->getTargetPeripheral('eeprom');