We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2856b4 commit d08207bCopy full SHA for d08207b
lib/ZynqEmioPort.h
@@ -74,6 +74,14 @@ class ZynqEmioPort : public BasePort {
74
ZynqEmioPort(int portNum = 0, std::ostream &debugStream = std::cerr);
75
~ZynqEmioPort();
76
77
+ // Get/set EMIO timeout in microseconds
78
+ double GetTimeout_us(void) const { return emio->GetTimeout_us(); }
79
+ void SetTimeout_us(double time_uSec) { emio->SetTimeout_us(time_uSec); }
80
+
81
+ // Get/set EMIO verbose flag
82
+ bool GetVerbose() const { return emio->GetVerbose(); }
83
+ void SetVerbose(bool newState) { emio->SetVerbose(newState); }
84
85
//****************** BasePort pure virtual methods ***********************
86
87
PortType GetPortType(void) const { return PORT_ZYNQ_EMIO; }
0 commit comments