mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
43 lines
1,013 B
C++
43 lines
1,013 B
C++
/* Driver for wrapper around Aurora (acs.eonerc.rwth-aachen.de:user:aurora)
|
|
*
|
|
* Author: Hatim Kanchwala <hatim@hatimak.me>
|
|
* SPDX-FileCopyrightText: 2020 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <villas/fpga/node.hpp>
|
|
|
|
namespace villas {
|
|
namespace fpga {
|
|
namespace ip {
|
|
|
|
class Aurora : public Node {
|
|
public:
|
|
static constexpr const char *masterPort = "m_axis";
|
|
static constexpr const char *slavePort = "s_axis";
|
|
|
|
virtual void dump() override;
|
|
|
|
std::list<std::string> getMemoryBlocks() const { return {registerMemory}; }
|
|
|
|
const StreamVertex &getDefaultSlavePort() const {
|
|
return getSlavePort(slavePort);
|
|
}
|
|
|
|
const StreamVertex &getDefaultMasterPort() const {
|
|
return getMasterPort(masterPort);
|
|
}
|
|
|
|
void setLoopback(bool state);
|
|
|
|
void resetFrameCounters();
|
|
|
|
private:
|
|
static constexpr const char registerMemory[] = "reg0";
|
|
};
|
|
|
|
} // namespace ip
|
|
} // namespace fpga
|
|
} // namespace villas
|