Struct Sx126xStatus
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
ChipModeSx126xChipModeThe operating mode.
CommandStatusSx126xCommandStatusThe outcome of the last command.
ErrorboolWhether 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
CommandStatus
The outcome of the last command.
public Sx126xCommandStatus CommandStatus { get; init; }
Property Value
Error
Whether that outcome is a failure: a watchdog timeout, a processing error, or an execution failure.
public bool Error { get; init; }