Refactored TDF processing PHP code to confirm to new TDF format
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace Targets\TargetDescriptionFiles\Avr8;
|
||||
|
||||
class FuseBitsDescriptor
|
||||
{
|
||||
public ?string $fuseType = null;
|
||||
|
||||
public function __construct(?string $fuseType)
|
||||
{
|
||||
$this->fuseType = strtolower($fuseType);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user