27 lines
805 B
PHP
27 lines
805 B
PHP
<?php
|
|
namespace Targets\TargetDescriptionFiles\Avr8;
|
|
|
|
require_once __DIR__ . '/BootSection.php';
|
|
|
|
class DebugWireParameters
|
|
{
|
|
public ?int $flashPageSize = null;
|
|
public ?int $flashSize = null;
|
|
public ?int $flashStartAddress = null;
|
|
|
|
/** @var BootSection[] */
|
|
public array $bootSections = [];
|
|
|
|
public ?int $ramStartAddress = null;
|
|
public ?int $eepromSize = null;
|
|
public ?int $eepromPageSize = null;
|
|
public ?int $ocdRevision = null;
|
|
public ?int $ocdDataRegister = null;
|
|
public ?int $eepromAddressRegisterHigh = null;
|
|
public ?int $eepromAddressRegisterLow = null;
|
|
public ?int $eepromControlRegisterAddress = null;
|
|
public ?int $eepromDataRegisterAddress = null;
|
|
public ?int $spmcRegisterStartAddress = null;
|
|
public ?int $osccalAddress = null;
|
|
}
|