Update Kraken.h

similar to hackrf declarations, a vector of device handlers doesn't work for some reason
This commit is contained in:
sdn-ninja 2024-06-12 10:15:06 +01:00 committed by GitHub
parent e7c908f7ef
commit 7ea991a548
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@
/// The original steve-m/librtlsdr does not include this method. /// The original steve-m/librtlsdr does not include this method.
/// This is included in librtlsdr/librtlsdr or krakenrf/librtlsdr. /// This is included in librtlsdr/librtlsdr or krakenrf/librtlsdr.
/// Also works using 2 RTL-SDRs which have been clock synchronised. /// Also works using 2 RTL-SDRs which have been clock synchronised.
/// @author 30hours, Michael Brock /// @author 30hours, Michael Brock, sdn-ninja
/// @todo Add support for multiple surveillance channels. /// @todo Add support for multiple surveillance channels.
/// @todo Replay support. /// @todo Replay support.
@ -30,7 +30,8 @@ class Kraken : public Source
private: private:
/// @brief Individual RTL-SDR devices. /// @brief Individual RTL-SDR devices.
std::vector<rtlsdr_dev_t*> devs; rtlsdr_dev_t* devs[2];
/// @brief Device indices for Kraken. /// @brief Device indices for Kraken.
std::vector<int> channelIndex; std::vector<int> channelIndex;