You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
867 B

4 years ago
#include "model/hardware/device/SonoDevice.h"
#include <QDebug>
#include <QFile>
SonoDevice::SonoDevice()
{
}
SonoDevice::~SonoDevice()
{
for(auto i = 0; i < SW_BUFFER_NUM; i++)
{
delete[] _buffers[i];
}
4 years ago
}
void SonoDevice::init()
{
device.init();
4 years ago
for(auto i = 0; i < SW_BUFFER_NUM; i++)
4 years ago
{
_buffers[i] = new char[BUFFER_SIZE];
4 years ago
memset(_buffers[i], 0, BUFFER_SIZE);
}
}
4 years ago
void SonoDevice::startDma()
4 years ago
{
device.writeWord(0, 0x8, 1);
4 years ago
}
4 years ago
void SonoDevice::stopDma()
4 years ago
{
device.writeWord(0, 0x8, 0);
4 years ago
}
int SonoDevice::getCounter()
{
auto temp = device.readWord(BAR_BRAM, COUNTER_REG);
4 years ago
return temp & COUNTER_MASK;
}
void SonoDevice::copy(int srcIndex, int dstIndex)
{
auto src = device.getBufferPtr(srcIndex);
auto dst = _buffers[dstIndex];
memcpy(dst, src, BUFFER_SIZE);
4 years ago
}
const char* SonoDevice::getBufferPtr(int index)
{
return _buffers[index];
4 years ago
}