https://github.com/pklaus/pytrbnet
A Python package wrapping libtrbnet.so
https://github.com/pklaus/pytrbnet
Last synced: about 1 month ago
JSON representation
A Python package wrapping libtrbnet.so
- Host: GitHub
- URL: https://github.com/pklaus/pytrbnet
- Owner: pklaus
- Created: 2018-10-18T07:41:50.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-05-27T23:47:32.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T13:03:34.966Z (about 2 months ago)
- Language: Python
- Homepage: https://pypi.org/project/trbnet/
- Size: 60.5 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyTrbNet
This is a Python package wrapping libtrbnet.so
from trbnettools.
It allows accessing trbnet registers from Python.The package comes with two additional features:
* XmlDb support. Allows to query registers by their
name as specified in the corresponding xml file.
* PCASpy-based EPICS IOC providing TrbNet register
status information to the EPICS detector control
system.### Installation
This package can be installed from the Python Package
Index via:pip install trbnet
### Configuration / Setup
As this Python package depends on the shared library
libtrbnet.so for the communication with TrbNet,
its location needs to be provided.
This can be done by setting the environment variable
`LIBTRBNET`.libtrbnet.so in turn requires the environment variables
`DAQOPSERVER` (if talking to TrbNet via a trbnetd daemon)
or the IP of a TRB Board: `TRB3_SERVER` (if talking to
TrbNet directly).A fourth environment variable `XMLDB` comes into play,
if the xmldb capabilities of this Python package are
to be used. It should point to the location of the
xml-db for your system.Those environment variables can also be set from within
Python with their lowercase variants
`libtrbnet`, `daqopserver`, and `trb3_server` upon
instantiating the TrbNet() class.Here's an example using environment variables in the shell:
```sh
# Setting the relevant environment variables
export LIBTRBNET=/local/gitrepos/trbnettools/trbnetd/libtrbnet.so
export DAQOPSERVER=jspc55.x-matter.uni-frankfurt.de:1
export XMLDB=/local/gitrepos/daqtools/xml-db/database# example call to get the value in the compile time
# register for all reachable TRBs:
trbcmd.py xmlget 0xffff TrbNet CompileTime# With the environment variables set, you could also
# run Python and instantiate TrbNet(). It would
# pick up the settings from the exported variables.
```or by setting the variables from within Python:
```python
import os
from trbnet import TrbNetlib = '/local/gitrepos/trbnettools/trbnetd/libtrbnet.so'
host = 'trbnetd_host:8888'
t = TrbNet(libtrbnet=lib, daqopserver=host)
# 0x40 is the register address of CompileTime
t.register_read(0xffff, 0x40)
```### Usage with Python
To read the content of the register address 0x0 for all
connected TrbNet boards (broadcast address 0xffff), do:```python
import os
from trbnet import TrbNett = TrbNet()
response = t.register_read(0xffff, 0x0)
for endpoint in response:
print("endpoint 0x{:08X} responded with: 0x{:08X}".format(endpoint, response[endpoint]))
```The TrbNet() class has the following methods:
* `register_read(trb_address, reg_address)`
* `register_write(trb_address, reg_address, value)`
* `register_read_mem(trb_address, reg_address, option, size)`
* `read_uid(trb_address)`
* Furthermore, multiple methods starting with `trb_` (e.g. `trb_set_address(uid, endpoint, trb_address)`)
can be called as they are inherited from [the parent class `_TrbNet`][trbnet/core/lowlevel.py].### Usage of the Terminal Utility trbcmd.py
The package comes with a simple command line utility called `trbcmd.py`.
It is a Python counterpart for the trbcmd utility provided
by trbnettools.What it can do:
**read register values**
```
trbcmd.py r 0xffff 0x0
```**read memory (subsequent register addresses)**
Read three registers starting at 0x8005 from all boards:
```
trbcmd.py rm 0xffff 0x8005 0x3 0x0
```**xml-db queries**
Ask all TrbNet nodes (broadcast 0xffff) for the register value of CompileTime as set in TrbNet.xml:
```
trbcmd.py xmlget 0xffff TrbNet CompileTime
```### Resources
* [The TRB Website](http://trb.gsi.de)
* [TrbNet Manual](http://jspc29.x-matter.uni-frankfurt.de/docu/trbnetdocu.pdf)[trbnet/core/lowlevel.py]: https://github.com/pklaus/pytrbnet/blob/master/trbnet/core/lowlevel.py