TDF and TDF script changes (application changes pending):
- Added new `pad` element to TDFs - Refactored `pin` and `signal` elements to accommodate new `pad` element - Improved validation of signal-to-pad relation in TDF validation script - Added key attribute to `variant` element - Removed `package` attribute from `variant` element
This commit is contained in:
@@ -4,11 +4,11 @@ namespace Targets\TargetDescriptionFiles;
|
||||
class Pin
|
||||
{
|
||||
public ?string $position = null;
|
||||
public ?string $pad = null;
|
||||
public ?string $padKey = null;
|
||||
|
||||
public function __construct(?string $position, ?string $pad)
|
||||
public function __construct(?string $position, ?string $padKey)
|
||||
{
|
||||
$this->position = $position;
|
||||
$this->pad = $pad;
|
||||
$this->padKey = $padKey;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user