#include <SDRHardwareInformation.hxx>
Public Member Functions | |
virtual std::vector< SDRMainBoardInfo > | getAllHardwareBoards (bool refresh=false) |
Get all hardware boards information including the main board and connected boards. | |
virtual const SDRMainBoardInfo & | getHardwareBoardByIndex (size_t boardIndex, bool refresh=false) |
Get a specific board's information by its index (0 is main board). | |
virtual size_t | getHardwareBoardCount (bool refresh=false) |
Get the total number of boards (main + connected). | |
virtual const SDRMainBoardInfo & | getHardwareBoardInfo (bool refresh=false) |
Get the hardware board information. | |
virtual const std::vector< uint8_t > & | getHardwareSupportedTxChannels (bool refresh=false) |
Get the hardware supported Tx channels. | |
virtual const std::vector< uint8_t > & | getHardwareSupportedRxChannels (bool refresh=false) |
Get the hardware supported Rx channels. | |
virtual const std::vector< std::string > & | getHardwareSupportedTxAntennas (uint8_t channel, bool refresh=false) |
Get the supported Tx antennas for a specific channel. | |
virtual const std::vector< std::string > & | getHardwareSupportedRxAntennas (uint8_t channel, bool refresh=false) |
Get the supported Rx antennas for a specific channel. | |
virtual const std::vector< std::vector< std::string > > & | getHardwareSupportedTxAntennas (bool refresh=false) |
Get the hardware supported Tx antennas for all channels. | |
virtual const std::vector< std::vector< std::string > > & | getHardwareSupportedRxAntennas (bool refresh=false) |
Get the hardware supported Rx antennas for all channels. | |
virtual const std::pair< double, double > & | getHardwareTxGainRange (uint8_t channel, bool refresh=false) |
Get the Tx gain range for a specific channel. | |
virtual const std::pair< double, double > & | getHardwareRxGainRange (uint8_t channel, bool refresh=false) |
Get the Rx gain range for a specific channel. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareTxGainRanges (bool refresh=false) |
Get the hardware Tx gain range for all channels. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareRxGainRanges (bool refresh=false) |
Get the hardware Rx gain range for all channels. | |
virtual const std::pair< double, double > & | getHardwareTxFrequencyRange (uint8_t channel, bool refresh=false) |
Get the Tx frequency range for a specific channel. | |
virtual const std::pair< double, double > & | getHardwareRxFrequencyRange (uint8_t channel, bool refresh=false) |
Get the Rx frequency range for a specific channel. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareTxFrequencyRanges (bool refresh=false) |
Get the Tx frequency range for all channels. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareRxFrequencyRanges (bool refresh=false) |
Get the Rx frequency range for all channels. | |
virtual const std::pair< double, double > & | getHardwareTxSamplingRateRange (uint8_t channel, bool refresh=false) |
Get the Tx sampling rate range for a specific channel. | |
virtual const std::pair< double, double > & | getHardwareRxSamplingRateRange (uint8_t channel, bool refresh=false) |
Get the Rx sampling rate range for a specific channel. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareTxSamplingRateRanges (bool refresh=false) |
Get the Tx sampling rate range for all channels. | |
virtual const std::vector< std::pair< double, double > > & | getHardwareRxSamplingRateRanges (bool refresh=false) |
Get the Rx sampling rate range for all channels. | |
virtual const std::vector< double > & | getHardwareSupportedMasterClockRates (bool refresh=false) |
Get the supported master clock rates. | |
virtual const std::vector< std::string > & | getHardwareSupportedClockAndTimeSources (bool refresh=false) |
Get the supported clock sources. | |
virtual const std::vector< std::string > & | getHardwareSupportedSensors (uint8_t channel, bool refresh=false) |
Get the supported sensor names for a specific channel. | |
virtual const std::vector< std::vector< std::string > > & | getAllHardwareSupportedSensors (bool refresh=false) |
Get all supported sensors for all channels. | |
virtual const std::vector< double > & | getHardwareTemperatures (bool refresh=false) |
Get the hardware's temperature sensors readings. | |
virtual bool | getHardwareAGCSupport (uint8_t channel, bool refresh=false) |
Get the AGC support for a specific channel. | |
virtual const std::vector< bool > & | getHardwareAGCSupport (bool refresh=false) |
Get the AGC support for all channels. | |
virtual const std::shared_ptr< SDRFrontEndProfile > & | getHardwareFrontEndProfile (uint8_t channel, bool refresh=false) |
Get the frontend profile for a specific channel. | |
virtual const std::vector< std::shared_ptr< SDRFrontEndProfile > > & | getHardwareFrontEndProfiles (bool refresh=false) |
Get all frontend profiles. | |
virtual const SDRDaughterboardProfile & | getHardwareDaughterboardProfile (size_t index, bool refresh=false) |
Get the daughterboard profile at a specific index. | |
virtual const std::vector< SDRDaughterboardProfile > & | getHardwareDaughterboardProfiles (bool refresh=false) |
Get all daughterboard profiles. | |
virtual void | refreshAllHardwareInfo () |
std::string | hardwareInformationSheet () |
virtual | ~SDRDeviceHardwareInformation ()=default |
Protected Member Functions | |
virtual void | refreshHardwareInfoForSupportedChannels () |
virtual void | refreshHardwareInfoForSupportedAntennas () |
virtual void | refreshHardwareInfoForGainRanges () |
virtual void | refreshHardwareInfoForFrequencyRanges () |
virtual void | refreshHardwareInfoForSamplingRateRanges () |
virtual void | refreshHardwareInfoForMasterClockRates () |
virtual void | refreshHardwareInfoForClockAndTimeSources () |
virtual void | refreshHardwareInfoForSensors () |
virtual void | refreshHardwareInfoForTemperatures () |
virtual void | refreshHardwareInfoForAGCSupport () |
virtual void | refreshHardwareInfoForBoards () |
virtual void | refreshHardwareInfoForConnectionProfile () |
virtual void | refreshHardwareInfoForFrontEndProfiles () |
Protected Attributes | |
SDRMainBoardInfo | boardInfo |
bool | boardInfoChanged {true} |
std::vector< uint8_t > | supportedTxChannels {} |
std::vector< uint8_t > | supportedRxChannels {} |
bool | supportedChannelsChanged {true} |
std::vector< SDRDaughterboardProfile > | daughterboardProfiles {} |
std::vector< std::shared_ptr< SDRFrontEndProfile > > | frontendProfiles {} |
bool | frontendProfilesChanged {true} |
std::vector< std::vector< std::string > > | supportedTxAntennas {} |
std::vector< std::vector< std::string > > | supportedRxAntennas {} |
bool | supportedAntennasChanged {true} |
bool | supportedAntennasMapChanged {true} |
std::vector< std::pair< double, double > > | txGainRanges {} |
std::vector< std::pair< double, double > > | rxGainRanges {} |
bool | gainRangesChanged {true} |
bool | gainRangesMapChanged {true} |
std::vector< std::pair< double, double > > | txFrequencyRanges {} |
std::vector< std::pair< double, double > > | rxFrequencyRanges {} |
bool | frequencyRangesChanged {true} |
bool | frequencyRangesMapChanged {true} |
std::vector< std::pair< double, double > > | txSamplingRateRanges {} |
std::vector< std::pair< double, double > > | rxSamplingRateRanges {} |
bool | samplingRateRangesChanged {true} |
bool | samplingRateRangesMapChanged {true} |
std::vector< double > | supportedMasterClockRates {} |
bool | masterClockRatesChanged {true} |
std::vector< std::string > | supportedClockAndTimeSources {} |
bool | clockAndTimeSourcesChanged {true} |
std::vector< std::vector< std::string > > | supportedSensors {} |
bool | sensorsChanged {true} |
bool | sensorsMapChanged {true} |
std::vector< double > | temperatureReadings {} |
bool | temperaturesChanged {true} |
std::vector< bool > | agcSupport {} |
bool | agcSupportChanged {true} |
bool | agcSupportMapChanged {true} |
Definition at line 125 of file SDRHardwareInformation.hxx.
|
virtualdefault |
|
inlinevirtual |
Get all hardware boards information including the main board and connected boards.
Definition at line 131 of file SDRHardwareInformation.hxx.
References boardInfo, boardInfoChanged, SDRMainBoardInfo::otherBoards, and refreshHardwareInfoForBoards().
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get all supported sensors for all channels.
Definition at line 448 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSensors(), sensorsMapChanged, and supportedSensors.
|
inlinevirtual |
Get the AGC support for all channels.
Definition at line 484 of file SDRHardwareInformation.hxx.
References agcSupport, agcSupportMapChanged, and refreshHardwareInfoForAGCSupport().
|
inlinevirtual |
Get the AGC support for a specific channel.
channel | The channel number to query |
Definition at line 472 of file SDRHardwareInformation.hxx.
References agcSupport, agcSupportChanged, and refreshHardwareInfoForAGCSupport().
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get a specific board's information by its index (0 is main board).
boardIndex | The index of the board to retrieve |
std::out_of_range | if boardIndex is invalid |
Definition at line 147 of file SDRHardwareInformation.hxx.
References boardInfo, boardInfoChanged, SDRMainBoardInfo::otherBoards, and refreshHardwareInfoForBoards().
|
inlinevirtual |
Get the total number of boards (main + connected).
Definition at line 163 of file SDRHardwareInformation.hxx.
References boardInfo, boardInfoChanged, SDRMainBoardInfo::getTotalBoardCount(), and refreshHardwareInfoForBoards().
|
inlinevirtual |
Get the hardware board information.
Definition at line 175 of file SDRHardwareInformation.hxx.
References boardInfo, boardInfoChanged, and refreshHardwareInfoForBoards().
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the daughterboard profile at a specific index.
index | The index of the daughterboard |
Definition at line 522 of file SDRHardwareInformation.hxx.
References daughterboardProfiles, frontendProfilesChanged, and refreshHardwareInfoForFrontEndProfiles().
|
inlinevirtual |
Get all daughterboard profiles.
Definition at line 534 of file SDRHardwareInformation.hxx.
References daughterboardProfiles, frontendProfilesChanged, and refreshHardwareInfoForFrontEndProfiles().
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the frontend profile for a specific channel.
channel | The channel number to query |
Definition at line 497 of file SDRHardwareInformation.hxx.
References frontendProfiles, frontendProfilesChanged, and refreshHardwareInfoForFrontEndProfiles().
|
inlinevirtual |
Get all frontend profiles.
Definition at line 509 of file SDRHardwareInformation.hxx.
References frontendProfiles, frontendProfilesChanged, and refreshHardwareInfoForFrontEndProfiles().
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the Rx frequency range for a specific channel.
channel | The channel number to query |
Definition at line 325 of file SDRHardwareInformation.hxx.
References frequencyRangesChanged, refreshHardwareInfoForFrequencyRanges(), and rxFrequencyRanges.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the Rx frequency range for all channels.
Definition at line 349 of file SDRHardwareInformation.hxx.
References frequencyRangesMapChanged, refreshHardwareInfoForFrequencyRanges(), and rxFrequencyRanges.
|
inlinevirtual |
Get the Rx gain range for a specific channel.
channel | The channel number to query |
Definition at line 275 of file SDRHardwareInformation.hxx.
References gainRangesChanged, refreshHardwareInfoForGainRanges(), and rxGainRanges.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware Rx gain range for all channels.
Definition at line 299 of file SDRHardwareInformation.hxx.
References gainRangesMapChanged, refreshHardwareInfoForGainRanges(), and rxGainRanges.
|
inlinevirtual |
Get the Rx sampling rate range for a specific channel.
channel | The channel number to query |
Definition at line 375 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSamplingRateRanges(), rxSamplingRateRanges, and samplingRateRangesChanged.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the Rx sampling rate range for all channels.
Definition at line 399 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSamplingRateRanges(), rxSamplingRateRanges, and samplingRateRangesMapChanged.
|
inlinevirtual |
Get the supported clock sources.
Definition at line 423 of file SDRHardwareInformation.hxx.
References clockAndTimeSourcesChanged, refreshHardwareInfoForClockAndTimeSources(), and supportedClockAndTimeSources.
|
inlinevirtual |
Get the supported master clock rates.
Definition at line 411 of file SDRHardwareInformation.hxx.
References masterClockRatesChanged, refreshHardwareInfoForMasterClockRates(), and supportedMasterClockRates.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware supported Rx antennas for all channels.
Definition at line 249 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedAntennas(), supportedAntennasMapChanged, and supportedRxAntennas.
|
inlinevirtual |
Get the supported Rx antennas for a specific channel.
channel | The channel number to query |
Definition at line 225 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedAntennas(), supportedAntennasChanged, and supportedRxAntennas.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware supported Rx channels.
Definition at line 199 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedChannels(), supportedChannelsChanged, and supportedRxChannels.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the supported sensor names for a specific channel.
channel | The channel number to query |
Definition at line 436 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSensors(), sensorsChanged, and supportedSensors.
|
inlinevirtual |
Get the hardware supported Tx antennas for all channels.
Definition at line 237 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedAntennas(), supportedAntennasMapChanged, and supportedTxAntennas.
|
inlinevirtual |
Get the supported Tx antennas for a specific channel.
channel | The channel number to query |
Definition at line 212 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedAntennas(), supportedAntennasChanged, and supportedTxAntennas.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware supported Tx channels.
Definition at line 187 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSupportedChannels(), supportedChannelsChanged, and supportedTxChannels.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware's temperature sensors readings.
Definition at line 460 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForTemperatures(), temperatureReadings, and temperaturesChanged.
|
inlinevirtual |
Get the Tx frequency range for a specific channel.
channel | The channel number to query |
Definition at line 312 of file SDRHardwareInformation.hxx.
References frequencyRangesChanged, refreshHardwareInfoForFrequencyRanges(), and txFrequencyRanges.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the Tx frequency range for all channels.
Definition at line 337 of file SDRHardwareInformation.hxx.
References frequencyRangesMapChanged, refreshHardwareInfoForFrequencyRanges(), and txFrequencyRanges.
|
inlinevirtual |
Get the Tx gain range for a specific channel.
channel | The channel number to query |
Definition at line 262 of file SDRHardwareInformation.hxx.
References gainRangesChanged, refreshHardwareInfoForGainRanges(), and txGainRanges.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the hardware Tx gain range for all channels.
Definition at line 287 of file SDRHardwareInformation.hxx.
References gainRangesMapChanged, refreshHardwareInfoForGainRanges(), and txGainRanges.
|
inlinevirtual |
Get the Tx sampling rate range for a specific channel.
channel | The channel number to query |
Definition at line 362 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSamplingRateRanges(), samplingRateRangesChanged, and txSamplingRateRanges.
Referenced by hardwareInformationSheet().
|
inlinevirtual |
Get the Tx sampling rate range for all channels.
Definition at line 387 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForSamplingRateRanges(), samplingRateRangesMapChanged, and txSamplingRateRanges.
|
inline |
Definition at line 558 of file SDRHardwareInformation.hxx.
References agcSupport, SDRConnectionProfile::Ethernet, frontendProfiles, getAllHardwareBoards(), getHardwareAGCSupport(), getHardwareBoardInfo(), getHardwareDaughterboardProfiles(), getHardwareFrontEndProfiles(), getHardwareRxFrequencyRange(), getHardwareRxGainRange(), getHardwareRxSamplingRateRange(), getHardwareSupportedMasterClockRates(), getHardwareSupportedRxAntennas(), getHardwareSupportedRxChannels(), getHardwareSupportedTxAntennas(), getHardwareSupportedTxChannels(), getHardwareTxFrequencyRange(), getHardwareTxGainRange(), getHardwareTxSamplingRateRange(), SDRConnectionProfile::PCIe, and SDRConnectionProfile::USB.
|
inlinevirtual |
Definition at line 542 of file SDRHardwareInformation.hxx.
References refreshHardwareInfoForAGCSupport(), refreshHardwareInfoForBoards(), refreshHardwareInfoForClockAndTimeSources(), refreshHardwareInfoForConnectionProfile(), refreshHardwareInfoForFrequencyRanges(), refreshHardwareInfoForFrontEndProfiles(), refreshHardwareInfoForGainRanges(), refreshHardwareInfoForMasterClockRates(), refreshHardwareInfoForSamplingRateRanges(), refreshHardwareInfoForSensors(), refreshHardwareInfoForSupportedAntennas(), refreshHardwareInfoForSupportedChannels(), and refreshHardwareInfoForTemperatures().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 856 of file SDRHardwareInformation.hxx.
Referenced by getHardwareAGCSupport(), getHardwareAGCSupport(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 859 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareBoards(), getHardwareBoardByIndex(), getHardwareBoardCount(), getHardwareBoardInfo(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 847 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedClockAndTimeSources(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Definition at line 862 of file SDRHardwareInformation.hxx.
Referenced by refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 838 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxFrequencyRange(), getHardwareRxFrequencyRanges(), getHardwareTxFrequencyRange(), getHardwareTxFrequencyRanges(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 865 of file SDRHardwareInformation.hxx.
Referenced by getHardwareDaughterboardProfile(), getHardwareDaughterboardProfiles(), getHardwareFrontEndProfile(), getHardwareFrontEndProfiles(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 835 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxGainRange(), getHardwareRxGainRanges(), getHardwareTxGainRange(), getHardwareTxGainRanges(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 844 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedMasterClockRates(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 841 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxSamplingRateRange(), getHardwareRxSamplingRateRanges(), getHardwareTxSamplingRateRange(), getHardwareTxSamplingRateRanges(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 850 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareSupportedSensors(), getHardwareSupportedSensors(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 832 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxAntennas(), getHardwareSupportedRxAntennas(), getHardwareSupportedTxAntennas(), getHardwareSupportedTxAntennas(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 829 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxChannels(), getHardwareSupportedTxChannels(), and refreshAllHardwareInfo().
|
inlineprotectedvirtual |
Reimplemented in AbstractSDRFrontEnd.
Definition at line 853 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTemperatures(), and refreshAllHardwareInfo().
|
mutableprotected |
Definition at line 924 of file SDRHardwareInformation.hxx.
Referenced by getHardwareAGCSupport(), getHardwareAGCSupport(), and hardwareInformationSheet().
|
mutableprotected |
Definition at line 925 of file SDRHardwareInformation.hxx.
Referenced by getHardwareAGCSupport().
|
mutableprotected |
Definition at line 926 of file SDRHardwareInformation.hxx.
Referenced by getHardwareAGCSupport().
|
mutableprotected |
Definition at line 869 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareBoards(), getHardwareBoardByIndex(), getHardwareBoardCount(), and getHardwareBoardInfo().
|
mutableprotected |
Definition at line 870 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareBoards(), getHardwareBoardByIndex(), getHardwareBoardCount(), and getHardwareBoardInfo().
|
mutableprotected |
Definition at line 912 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedClockAndTimeSources().
|
mutableprotected |
Definition at line 878 of file SDRHardwareInformation.hxx.
Referenced by getHardwareDaughterboardProfile(), and getHardwareDaughterboardProfiles().
|
mutableprotected |
Definition at line 897 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxFrequencyRange(), and getHardwareTxFrequencyRange().
|
mutableprotected |
Definition at line 898 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxFrequencyRanges(), and getHardwareTxFrequencyRanges().
|
mutableprotected |
Definition at line 879 of file SDRHardwareInformation.hxx.
Referenced by getHardwareFrontEndProfile(), getHardwareFrontEndProfiles(), and hardwareInformationSheet().
|
mutableprotected |
Definition at line 880 of file SDRHardwareInformation.hxx.
Referenced by getHardwareDaughterboardProfile(), getHardwareDaughterboardProfiles(), getHardwareFrontEndProfile(), and getHardwareFrontEndProfiles().
|
mutableprotected |
Definition at line 891 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxGainRange(), and getHardwareTxGainRange().
|
mutableprotected |
Definition at line 892 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxGainRanges(), and getHardwareTxGainRanges().
|
mutableprotected |
Definition at line 908 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedMasterClockRates().
|
mutableprotected |
Definition at line 896 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxFrequencyRange(), and getHardwareRxFrequencyRanges().
|
mutableprotected |
Definition at line 890 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxGainRange(), and getHardwareRxGainRanges().
|
mutableprotected |
Definition at line 902 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxSamplingRateRange(), and getHardwareRxSamplingRateRanges().
|
mutableprotected |
Definition at line 903 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxSamplingRateRange(), and getHardwareTxSamplingRateRange().
|
mutableprotected |
Definition at line 904 of file SDRHardwareInformation.hxx.
Referenced by getHardwareRxSamplingRateRanges(), and getHardwareTxSamplingRateRanges().
|
mutableprotected |
Definition at line 916 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedSensors().
|
mutableprotected |
Definition at line 917 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareSupportedSensors().
|
mutableprotected |
Definition at line 885 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxAntennas(), and getHardwareSupportedTxAntennas().
|
mutableprotected |
Definition at line 886 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxAntennas(), and getHardwareSupportedTxAntennas().
|
mutableprotected |
Definition at line 875 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxChannels(), and getHardwareSupportedTxChannels().
|
mutableprotected |
Definition at line 911 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedClockAndTimeSources().
|
mutableprotected |
Definition at line 907 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedMasterClockRates().
|
mutableprotected |
Definition at line 884 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxAntennas(), and getHardwareSupportedRxAntennas().
|
mutableprotected |
Definition at line 874 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedRxChannels().
|
mutableprotected |
Definition at line 915 of file SDRHardwareInformation.hxx.
Referenced by getAllHardwareSupportedSensors(), and getHardwareSupportedSensors().
|
mutableprotected |
Definition at line 883 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedTxAntennas(), and getHardwareSupportedTxAntennas().
|
mutableprotected |
Definition at line 873 of file SDRHardwareInformation.hxx.
Referenced by getHardwareSupportedTxChannels().
|
mutableprotected |
Definition at line 920 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTemperatures().
|
mutableprotected |
Definition at line 921 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTemperatures().
|
mutableprotected |
Definition at line 895 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTxFrequencyRange(), and getHardwareTxFrequencyRanges().
|
mutableprotected |
Definition at line 889 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTxGainRange(), and getHardwareTxGainRanges().
|
mutableprotected |
Definition at line 901 of file SDRHardwareInformation.hxx.
Referenced by getHardwareTxSamplingRateRange(), and getHardwareTxSamplingRateRanges().