/alps/pcitool

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to views/transform.h

  • Committer: Vasilii Chernov
  • Date: 2016-02-11 09:37:24 UTC
  • mto: This revision was merged to the branch mainline in revision 353.
  • Revision ID: vchernov@inr.ru-20160211093724-ipw54n5wxts1jt2i
Merge script and transform view. Add get register and properties info to python wrap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include <pcilib.h>
5
5
#include <pcilib/view.h>
 
6
#include <py.h>
6
7
 
7
8
typedef struct {
8
9
    pcilib_view_description_t base;
9
10
    const char *read_from_reg;                  /**< Formula explaining how to convert the register value to the view value */
10
11
    const char *write_to_reg;                   /**< Formula explaining how to convert from the view value to the register value */
 
12
        pcilib_script_t *script;
11
13
} pcilib_transform_view_description_t;
12
14
 
13
15
#ifndef _PCILIB_VIEW_TRANSFORM_C