Corrected AVR8 TDF EESAVE fuse bit validation, and a little refactoring

This commit is contained in:
Nav
2023-05-27 13:41:47 +01:00
parent b4ec41c34a
commit b39d76d1e9
2 changed files with 52 additions and 43 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace Bloom\BuildScripts\TargetDescriptionFiles\Avr8;
class FuseBitsDescriptor
{
const FUSE_TYPE_LOW = 'low';
const FUSE_TYPE_HIGH = 'high';
const FUSE_TYPE_EXTENDED = 'extended';
public ?string $fuseType = null;
public function __construct(?string $fuseType)
{
$this->fuseType = $fuseType;
}
}