- use Processor::Buffer for collecting symbol error

- Constellation diagram uses Processor::Buffer 

git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@1076 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-24 11:29:51 +00:00
parent 0795d0c75b
commit 4f19435059
5 changed files with 26 additions and 48 deletions
+2 -11
View File
@@ -91,20 +91,11 @@ private:
void audioDeviceStopped();
void receiverDataChanged(Receiver *pObj)
{
uint32_t i;
uint32 nSyms;
sym_err_t *pSoftSyms;
nSyms = (uint32)dmin((float)128, (float)pObj->getNumSoftSym());
pSoftSyms = pObj->getSoftSyms();
m_pIQPlaneComponent->pointAdd(pSoftSyms, nSyms);
for (i=0; i < 4; i++)
m_pIQPlaneComponent->pointAdd(pObj->getSoftSyms());
for (size_t i=0; i < 4; i++)
{
m_pIQPlaneComponent->trackerPointEnable(i, juce::Colours::red, ((ReceiverInterface*)pObj)->getTracker(i), 15);
}
}
void handleMessage(String msg)
{