2022-03-12 15:41:27 +00:00
|
|
|
<?php
|
|
|
|
|
namespace Bloom\BuildScripts\TargetDescriptionFiles\Avr8;
|
|
|
|
|
|
2023-05-27 13:41:47 +01:00
|
|
|
class FuseBitsDescriptor
|
2022-03-12 15:41:27 +00:00
|
|
|
{
|
|
|
|
|
const FUSE_TYPE_LOW = 'low';
|
|
|
|
|
const FUSE_TYPE_HIGH = 'high';
|
|
|
|
|
const FUSE_TYPE_EXTENDED = 'extended';
|
|
|
|
|
|
|
|
|
|
public ?string $fuseType = null;
|
2023-05-27 13:41:47 +01:00
|
|
|
|
|
|
|
|
public function __construct(?string $fuseType)
|
|
|
|
|
{
|
|
|
|
|
$this->fuseType = $fuseType;
|
|
|
|
|
}
|
2022-03-12 15:41:27 +00:00
|
|
|
}
|