DWEN fuse bit field validation (in TDFs) for AVR8 debugWire targets

This commit is contained in:
Nav
2022-03-12 15:41:27 +00:00
parent f17b2e1c35
commit 6906addf72
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace Bloom\BuildScripts\TargetDescriptionFiles\Avr8;
class FuseBitDescriptor
{
const FUSE_TYPE_LOW = 'low';
const FUSE_TYPE_HIGH = 'high';
const FUSE_TYPE_EXTENDED = 'extended';
public ?string $fuseType = null;
}