mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 19:27:36 +01:00
17 lines
463 B
C++
17 lines
463 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <stdint.h>
|
|
|
|
namespace backend {
|
|
struct DevVIDPID {
|
|
uint16_t vid;
|
|
uint16_t pid;
|
|
};
|
|
|
|
extern const std::vector<DevVIDPID> AIRSPY_VIDPIDS;
|
|
extern const std::vector<DevVIDPID> AIRSPYHF_VIDPIDS;
|
|
extern const std::vector<DevVIDPID> HACKRF_VIDPIDS;
|
|
extern const std::vector<DevVIDPID> RTL_SDR_VIDPIDS;
|
|
|
|
int getDeviceFD(int& vid, int& pid, const std::vector<DevVIDPID>& allowedVidPids);
|
|
} |