A class to represent the result of a processed packet (that is not noise) by the Decider. More...
#include <Decider.h>
Inherited by DeciderResult80211, DeciderResult802154Narrow, and DeciderResultUWBIR.
Public Member Functions | |
DeciderResult (bool isCorrect=true) | |
Initializes the DeciderResult with the passed bool, or true if omitted. | |
virtual bool | isSignalCorrect () const |
A Function that returns a very basic result about the Signal. | |
Protected Attributes | |
bool | isCorrect |
A class to represent the result of a processed packet (that is not noise) by the Decider.
It stores information (i.e. basically whether a packet has been received correctly) for the MACLayer that is handed up to the MACLayer by the PhyLayer together with the received packet. (see also DeciderToPhyInterface)
You can subclass DeciderResult to create a more detailed result.
Definition at line 31 of file Decider.h.
bool DeciderResult::isCorrect [protected] |
Stores if the AirFrame for this result was received correct.
Definition at line 35 of file Decider.h.
Referenced by isSignalCorrect().