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