Table of Contents

Struct Sx126xStatus

Namespace
Pamoja.Radios
Assembly
Pamoja.Radios.dll

A decoded status byte.

public readonly record struct Sx126xStatus : IEquatable<Sx126xStatus>
Implements
Inherited Members

Constructors

Sx126xStatus(Sx126xChipMode, Sx126xCommandStatus, bool)

A decoded status byte.

public Sx126xStatus(Sx126xChipMode ChipMode, Sx126xCommandStatus CommandStatus, bool Error)

Parameters

ChipMode Sx126xChipMode

The operating mode.

CommandStatus Sx126xCommandStatus

The outcome of the last command.

Error bool

Whether that outcome is a failure: a watchdog timeout, a processing error, or an execution failure.

Properties

ChipMode

The operating mode.

public Sx126xChipMode ChipMode { get; init; }

Property Value

Sx126xChipMode

CommandStatus

The outcome of the last command.

public Sx126xCommandStatus CommandStatus { get; init; }

Property Value

Sx126xCommandStatus

Error

Whether that outcome is a failure: a watchdog timeout, a processing error, or an execution failure.

public bool Error { get; init; }

Property Value

bool