Files
BloomPatched/build/scripts/Targets/TargetDescriptionFiles/AVR8/DebugWireParameters.php

27 lines
755 B
PHP
Raw Normal View History

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