Corrected AVR8 TDF EESAVE fuse bit validation, and a little refactoring
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user