Table of Contents

Class DeploymentBlock

Namespace
nanoFramework.Tools.Debugger.WireProtocol
Assembly
nanoFramework.Tools.DebugLibrary.Net.dll
public class DeploymentBlock
Inheritance
DeploymentBlock
Inherited Members
Extension Methods

Constructors

DeploymentBlock(int, int, int)

Creates a new DeploymentBlock starting at startAddress with size size.

public DeploymentBlock(int startAddress, int size, int programAligment)

Parameters

startAddress int

Start address of the block.

size int

Size of the block.

programAligment int

Alignment size for programming.

Properties

AvailableSpace

Available space in this block

public int AvailableSpace { get; }

Property Value

int

DeploymentData

Data to deploy to the device

public byte[] DeploymentData { get; }

Property Value

byte[]

ProgramAligment

Required aliment of programming word.

public int ProgramAligment { get; }

Property Value

int

Size

Block size

public int Size { get; }

Property Value

int

StartAddress

Start address of block

public int StartAddress { get; }

Property Value

int