2023-05-28 02:17:20 +01:00
|
|
|
<?php
|
2024-02-09 23:30:47 +00:00
|
|
|
namespace Targets\TargetDescriptionFiles\Avr8;
|
2023-05-28 02:17:20 +01:00
|
|
|
|
2024-02-09 23:30:47 +00:00
|
|
|
require_once __DIR__ . '/BootSection.php';
|
|
|
|
|
|
|
|
|
|
class DebugWireParameters
|
2023-05-28 02:17:20 +01:00
|
|
|
{
|
|
|
|
|
public ?int $flashPageSize = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $flashSize = null;
|
|
|
|
|
public ?int $flashStartAddress = null;
|
|
|
|
|
|
|
|
|
|
/** @var BootSection[] */
|
2024-02-22 20:40:59 +00:00
|
|
|
public array $bootSectionOptions = [];
|
2024-02-09 23:30:47 +00:00
|
|
|
|
2023-05-28 02:17:20 +01:00
|
|
|
public ?int $ramStartAddress = null;
|
|
|
|
|
public ?int $eepromSize = null;
|
|
|
|
|
public ?int $eepromPageSize = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $ocdRevision = null;
|
2024-03-29 15:52:12 +00:00
|
|
|
public ?int $ocdDataRegisterAddress = null;
|
|
|
|
|
public ?int $eearAddressHigh = null;
|
|
|
|
|
public ?int $eearAddressLow = null;
|
|
|
|
|
public ?int $eecrAddress = null;
|
|
|
|
|
public ?int $eedrAddress = null;
|
|
|
|
|
public ?int $spmcrAddress = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $osccalAddress = null;
|
2023-05-28 02:17:20 +01:00
|
|
|
}
|