RemoteCommand
The RemoteCommand class …
In this example …
Python RemoteCommand Example
Below is an example of creating a RemoteCommand which …
import pyrogue
# Create a subclass of a RemoteCommand
class MyRemoteCommand(...):
C++ RemoteCommand Example
Below is an example of creating a RemoteCommand device in C++.
#include <rogue/interfaces/memory/Constants.h>
#include <boost/thread.hpp>
// Create a subclass of a RemoteCommand
class MyRemoteCommand : public rogue:: ... {
public:
protected:
};
A few notes on the above examples …