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

13 lines
233 B
PHP
Raw Normal View History

<?php
namespace Targets\TargetDescriptionFiles\Avr8;
class FuseBitsDescriptor
{
public ?string $fuseType = null;
public function __construct(?string $fuseType)
{
$this->fuseType = strtolower($fuseType);
}
}