Line data Source code
1 : /**
2 : * @file SFPMuxIONode.cpp
3 : *
4 : * This is part of the DUNE DAQ Software Suite, copyright 2020.
5 : * Licensing/copyright details are in the COPYING file that you should have
6 : * received with this code.
7 : */
8 :
9 : #include "timing/SFPMuxIONode.hpp"
10 :
11 : #include <string>
12 : #include <vector>
13 :
14 : namespace dunedaq {
15 : namespace timing {
16 :
17 : //-----------------------------------------------------------------------------
18 0 : SFPMuxIONode::SFPMuxIONode(const uhal::Node& node,
19 : std::string uid_i2c_bus,
20 : std::string pll_i2c_bus,
21 : std::string pll_i2c_device,
22 : std::vector<std::string> clock_names,
23 0 : std::vector<std::string> sfp_i2c_buses)
24 0 : : IONode(node, uid_i2c_bus, pll_i2c_bus, pll_i2c_device, clock_names, sfp_i2c_buses)
25 0 : {}
26 : //-----------------------------------------------------------------------------
27 :
28 : //-----------------------------------------------------------------------------
29 0 : void SFPMuxIONode::reset_pll() const
30 : {
31 0 : }
32 : //-----------------------------------------------------------------------------
33 :
34 : //-----------------------------------------------------------------------------
35 0 : SFPMuxIONode::~SFPMuxIONode() {}
36 : //-----------------------------------------------------------------------------
37 :
38 : } // namespace timing
39 : } // namespace dunedaq
|