Refactored TDF processing PHP code to confirm to new TDF format

This commit is contained in:
Nav
2024-02-09 23:30:47 +00:00
parent 09a5be91fd
commit c563443737
58 changed files with 1877 additions and 1762 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Targets\TargetDescriptionFiles\Avr8;
class BootSection
{
public ?int $startAddress = null;
public ?int $size = null;
public ?int $pageSize = null;
public function __construct(
?int $startAddress,
?int $size,
?int $pageSize
) {
$this->startAddress = $startAddress;
$this->size = $size;
$this->pageSize = $pageSize;
}
}