summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2017-06-22 17:50:46 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2017-06-22 17:50:46 -0700
commit5bb7741f0ef5899ec693cd7afa2dd0ffdb77d630 (patch)
tree124ae1716f1c3bdc0812b07fade895e857ef27dc
parent5db05623fdf4ec18e3ca0e2695edd2ab71ff499a (diff)
parent7d3f780a548589796c01ce81148e447a98fda35e (diff)
Merge remote-tracking branch 'github/pr/1333'
-rw-r--r--gnuradio-runtime/lib/math/qa_fxpt_nco.cc6
-rw-r--r--gnuradio-runtime/lib/math/qa_fxpt_vco.cc18
2 files changed, 16 insertions, 8 deletions
diff --git a/gnuradio-runtime/lib/math/qa_fxpt_nco.cc b/gnuradio-runtime/lib/math/qa_fxpt_nco.cc
index cf229d68be..16ea120381 100644
--- a/gnuradio-runtime/lib/math/qa_fxpt_nco.cc
+++ b/gnuradio-runtime/lib/math/qa_fxpt_nco.cc
@@ -86,8 +86,8 @@ qa_fxpt_nco::t1()
{
gr::nco<float,float> ref_nco;
gr::fxpt_nco new_nco;
- gr_complex ref_block[SIN_COS_BLOCK_SIZE];
- gr_complex new_block[SIN_COS_BLOCK_SIZE];
+ gr_complex* ref_block = new gr_complex[SIN_COS_BLOCK_SIZE];
+ gr_complex* new_block = new gr_complex[SIN_COS_BLOCK_SIZE];
double max_error = 0;
ref_nco.set_freq((float)(2 * M_PI / SIN_COS_FREQ));
@@ -107,6 +107,8 @@ qa_fxpt_nco::t1()
}
CPPUNIT_ASSERT_DOUBLES_EQUAL (ref_nco.get_phase(), new_nco.get_phase(), SIN_COS_TOLERANCE);
// printf ("Fxpt max error %.9f, max phase error %.9f\n", max_error, max_phase_error);
+ delete[] ref_block;
+ delete[] new_block;
}
void
diff --git a/gnuradio-runtime/lib/math/qa_fxpt_vco.cc b/gnuradio-runtime/lib/math/qa_fxpt_vco.cc
index 8ee402fdc1..a406c12c0f 100644
--- a/gnuradio-runtime/lib/math/qa_fxpt_vco.cc
+++ b/gnuradio-runtime/lib/math/qa_fxpt_vco.cc
@@ -79,9 +79,9 @@ qa_fxpt_vco::t1()
{
gr::vco<float,float> ref_vco;
gr::fxpt_vco new_vco;
- float ref_block[SIN_COS_BLOCK_SIZE];
- float new_block[SIN_COS_BLOCK_SIZE];
- float input[SIN_COS_BLOCK_SIZE];
+ float *ref_block = new float[SIN_COS_BLOCK_SIZE];
+ float *new_block = new float[SIN_COS_BLOCK_SIZE];
+ float *input = new float[SIN_COS_BLOCK_SIZE];
double max_error = 0;
for(int i = 0; i < SIN_COS_BLOCK_SIZE; i++) {
@@ -97,6 +97,9 @@ qa_fxpt_vco::t1()
}
CPPUNIT_ASSERT_DOUBLES_EQUAL(ref_vco.get_phase(), new_vco.get_phase(), SIN_COS_TOLERANCE);
// printf ("Fxpt max error %.9f, max phase error %.9f\n", max_error, ref_vco.get_phase()-new_vco.get_phase());
+ delete[] ref_block;
+ delete[] new_block;
+ delete[] input;
}
void
@@ -104,9 +107,9 @@ qa_fxpt_vco::t2()
{
gr::vco<gr_complex,float> ref_vco;
gr::fxpt_vco new_vco;
- gr_complex ref_block[SIN_COS_BLOCK_SIZE];
- gr_complex new_block[SIN_COS_BLOCK_SIZE];
- float input[SIN_COS_BLOCK_SIZE];
+ gr_complex *ref_block = new gr_complex[SIN_COS_BLOCK_SIZE];
+ gr_complex *new_block = new gr_complex[SIN_COS_BLOCK_SIZE];
+ float *input = new float[SIN_COS_BLOCK_SIZE];
double max_error = 0;
for(int i = 0; i < SIN_COS_BLOCK_SIZE; i++) {
@@ -122,6 +125,9 @@ qa_fxpt_vco::t2()
}
CPPUNIT_ASSERT_DOUBLES_EQUAL(ref_vco.get_phase(), new_vco.get_phase(), SIN_COS_TOLERANCE);
// printf ("Fxpt max error %.9f, max phase error %.9f\n", max_error, ref_vco.get_phase()-new_vco.get_phase());
+ delete[] ref_block;
+ delete[] new_block;
+ delete[] input;
}
void