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
|
|
|
|
|
|
|
|
class UpdiParameters
|
|
|
|
|
{
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $programMemoryOffset = null;
|
|
|
|
|
public ?int $flashPageSize = null;
|
|
|
|
|
public ?int $eepromPageSize = null;
|
2023-05-28 02:17:20 +01:00
|
|
|
public ?int $nvmModuleBaseAddress = null;
|
|
|
|
|
public ?int $ocdBaseAddress = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $flashSize = null;
|
|
|
|
|
public ?int $eepromSize = null;
|
|
|
|
|
public ?int $eepromStartAddress = null;
|
2023-05-28 02:17:20 +01:00
|
|
|
public ?int $signatureSegmentStartAddress = null;
|
|
|
|
|
public ?int $fuseSegmentStartAddress = null;
|
|
|
|
|
public ?int $fuseSegmentSize = null;
|
|
|
|
|
public ?int $lockbitsSegmentStartAddress = null;
|
|
|
|
|
}
|