/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/pcipywrap.i

  • Committer: Vasilii Chernov
  • Date: 2016-02-08 10:55:33 UTC
  • mto: This revision was merged to the branch mainline in revision 353.
  • Revision ID: vchernov@inr.ru-20160208105533-fl0uue3ukv6di13b
Add support for setting register value to script transfrom. Add set_property and get_property functions to pcipywrap. Cleaning cmakelists from unused dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
extern PyObject* read_register(const char *regname, const char *bank = NULL);
4
4
extern PyObject* __createPcilibInstance(const char *fpga_device, const char *model = NULL);
5
 
extern void __setPcilib(PyObject* addr);
 
5
extern PyObject* __setPcilib(PyObject* addr);
 
6
extern PyObject* get_property(const char *prop);
 
7
extern PyObject* set_property(const char *prop, PyObject* val);