aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib/rfdc/patches/xrfdc.h.patch
diff options
context:
space:
mode:
authorLars Amsel <lars.amsel@ni.com>2021-06-04 08:27:50 +0200
committerAaron Rossetto <aaron.rossetto@ni.com>2021-06-10 12:01:53 -0500
commit2a575bf9b5a4942f60e979161764b9e942699e1e (patch)
tree2f0535625c30025559ebd7494a4b9e7122550a73 /mpm/lib/rfdc/patches/xrfdc.h.patch
parente17916220cc955fa219ae37f607626ba88c4afe3 (diff)
downloaduhd-2a575bf9b5a4942f60e979161764b9e942699e1e.tar.gz
uhd-2a575bf9b5a4942f60e979161764b9e942699e1e.tar.bz2
uhd-2a575bf9b5a4942f60e979161764b9e942699e1e.zip
uhd: Add support for the USRP X410
Co-authored-by: Lars Amsel <lars.amsel@ni.com> Co-authored-by: Michael Auchter <michael.auchter@ni.com> Co-authored-by: Martin Braun <martin.braun@ettus.com> Co-authored-by: Paul Butler <paul.butler@ni.com> Co-authored-by: Cristina Fuentes <cristina.fuentes-curiel@ni.com> Co-authored-by: Humberto Jimenez <humberto.jimenez@ni.com> Co-authored-by: Virendra Kakade <virendra.kakade@ni.com> Co-authored-by: Lane Kolbly <lane.kolbly@ni.com> Co-authored-by: Max Köhler <max.koehler@ni.com> Co-authored-by: Andrew Lynch <andrew.lynch@ni.com> Co-authored-by: Grant Meyerhoff <grant.meyerhoff@ni.com> Co-authored-by: Ciro Nishiguchi <ciro.nishiguchi@ni.com> Co-authored-by: Thomas Vogel <thomas.vogel@ni.com>
Diffstat (limited to 'mpm/lib/rfdc/patches/xrfdc.h.patch')
-rw-r--r--mpm/lib/rfdc/patches/xrfdc.h.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/mpm/lib/rfdc/patches/xrfdc.h.patch b/mpm/lib/rfdc/patches/xrfdc.h.patch
new file mode 100644
index 000000000..d2fceb13a
--- /dev/null
+++ b/mpm/lib/rfdc/patches/xrfdc.h.patch
@@ -0,0 +1,53 @@
+--- embeddedsw/XilinxProcessorIPLib/drivers/rfdc/src/xrfdc.h 2020-07-16 16:23:14.839402600 -0500
++++ uhddev/mpm/include/mpm/rfdc/xrfdc.h 2020-08-17 12:31:24.477432400 -0500
+@@ -235,6 +235,7 @@
+
+ /***************************** Include Files *********************************/
+
++#include "rfdc_throw.h"
+ #include <stdlib.h>
+ #include <stdint.h>
+
+@@ -650,24 +651,24 @@
+
+ /***************** Macros (Inline Functions) Definitions *********************/
+
+-#ifndef __BAREMETAL__
+-#define Xil_AssertNonvoid(Expression) \
+-{ \
+- if (!(Expression)) { \
+- while (1); \
+- } \
+-}
+-#define Xil_AssertVoid(Expression) \
+-{ \
+- if (!(Expression)) { \
+- while (1); \
+- } \
+-}
+-#define Xil_AssertVoidAlways() \
+-{ \
+- while (1); \
+-}
+-#endif
++# ifndef __BAREMETAL__
++# define Xil_AssertNonvoid(Expression) \
++ { \
++ if (!(Expression)) { \
++ rfdc_throw(#Expression); \
++ } \
++ }
++# define Xil_AssertVoid(Expression) \
++ { \
++ if (!(Expression)) { \
++ rfdc_throw(#Expression); \
++ } \
++ }
++# define Xil_AssertVoidAlways() \
++ { \
++ rfdc_throw("Assert false"); \
++ }
++# endif
+
+ #define MAX(x,y) (x>y)?x:y
+ #define MIN(x,y) (x<y)?x:y