1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fpga: remove unused code

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2022-12-07 17:05:37 +01:00
parent 1c7d57d5f5
commit ae17d58cc4
2 changed files with 0 additions and 24 deletions

View file

@ -66,12 +66,6 @@ public:
virtual
int prepare();
virtual
int start();
virtual
int stop();
virtual
std::vector<int> getPollFDs();
};

View file

@ -166,24 +166,6 @@ int FpgaNode::prepare()
return Node::prepare();
}
int FpgaNode::start()
{
int ret = Node::start();
if (!ret)
state = State::STARTED;
return 0;
}
int FpgaNode::stop()
{
int ret = Node::stop();
if (ret)
return ret;
return 0;
}
int FpgaNode::_read(Sample *smps[], unsigned cnt)
{
unsigned read;