- feed also feeds legacy FIFO

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@989 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-15 15:36:18 +00:00
parent 6b7ed6e41e
commit 19ea3402ca
+2
View File
@@ -68,6 +68,8 @@ public:
size_t feed(ComplexScalar const *x, uint32_t size=1)
{
m_w = (m_w + size) % m_N;
m_fifo[m_w] = *x;
return m_bufferIn.write(x, size);
}