mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-05 19:43:07 +02:00
SoapyUHD: patches for uhd 4.8
This commit is contained in:
parent
e6e8ac1277
commit
d00ad95917
1 changed files with 43 additions and 0 deletions
43
srcpkgs/SoapyUHD/patches/uhd-4.8.patch
Normal file
43
srcpkgs/SoapyUHD/patches/uhd-4.8.patch
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
From 6eeee4fd3217166199068bbe05c555c2bccb2a7b Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ryan Volz <ryan.volz@gmail.com>
|
||||||
|
Date: Fri, 7 Feb 2025 11:09:35 -0500
|
||||||
|
Subject: [PATCH] Define post_input_action/post_output_action for UHD 4.8+
|
||||||
|
|
||||||
|
---
|
||||||
|
UHDSoapyDevice.cpp | 16 ++++++++++++++++
|
||||||
|
1 file changed, 16 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/UHDSoapyDevice.cpp b/UHDSoapyDevice.cpp
|
||||||
|
index 3ce66f3..88641c5 100644
|
||||||
|
--- a/UHDSoapyDevice.cpp
|
||||||
|
+++ b/UHDSoapyDevice.cpp
|
||||||
|
@@ -707,6 +707,14 @@ class UHDSoapyRxStream : public uhd::rx_streamer
|
||||||
|
if (ret != 0) throw std::runtime_error(str(boost::format("UHDSoapyRxStream::issue_stream_cmd() = %d") % ret));
|
||||||
|
}
|
||||||
|
|
||||||
|
+ #if UHD_VERSION >= 4080000
|
||||||
|
+ void post_input_action(
|
||||||
|
+ const std::shared_ptr<uhd::rfnoc::action_info>&, const size_t) override
|
||||||
|
+ {
|
||||||
|
+ throw uhd::not_implemented_error("post_input_action is not implemented here!");
|
||||||
|
+ }
|
||||||
|
+ #endif
|
||||||
|
+
|
||||||
|
private:
|
||||||
|
SoapySDR::Device *_device;
|
||||||
|
SoapySDR::Stream *_stream;
|
||||||
|
@@ -851,6 +859,14 @@ class UHDSoapyTxStream : public uhd::tx_streamer
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ #if UHD_VERSION >= 4080000
|
||||||
|
+ void post_output_action(
|
||||||
|
+ const std::shared_ptr<uhd::rfnoc::action_info>&, const size_t) override
|
||||||
|
+ {
|
||||||
|
+ throw uhd::not_implemented_error("post_output_action is not implemented here!");
|
||||||
|
+ }
|
||||||
|
+ #endif
|
||||||
|
+
|
||||||
|
private:
|
||||||
|
bool _active;
|
||||||
|
SoapySDR::Device *_device;
|
Loading…
Add table
Reference in a new issue