Files
BloomPatched/build/scripts/TargetDescriptionFiles/AVR8/FuseBitsDescriptor.php

17 lines
344 B
PHP
Raw Normal View History

<?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;
}
}