aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tsou <tom@tsou.cc>2013-11-18 01:35:22 -0500
committerThomas Tsou <tom@tsou.cc>2013-11-18 01:36:58 -0500
commitaf506441b3002ee2253e71a50120c88b100007b8 (patch)
tree535390879884a91f83dd979859e5bfa8ae78e5be
parent4de70be9a6d9ed4ed379168196aad745b9ef4257 (diff)
Transceiver52M: Add missing scaling vector resize
Downlink scaling factors, which are stored in a vector for multiple channels, was not being sized correctly. Signed-off-by: Thomas Tsou <tom@tsou.cc>
-rw-r--r--Transceiver52M/radioInterfaceResamp.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Transceiver52M/radioInterfaceResamp.cpp b/Transceiver52M/radioInterfaceResamp.cpp
index 81b52fe..f898d65 100644
--- a/Transceiver52M/radioInterfaceResamp.cpp
+++ b/Transceiver52M/radioInterfaceResamp.cpp
@@ -111,6 +111,7 @@ bool RadioInterfaceResamp::init(int type)
convertSendBuffer.resize(1);
convertRecvBuffer.resize(1);
mReceiveFIFO.resize(1);
+ powerScaling.resize(1);
switch (type) {
case RadioDevice::RESAMP_64M: