This folder contains the Python implementation of the eRPC infrastructure.
The Python implementation of eRPC is fully compatible with the C/C++ implementation at the protocol level. Also, the classes mirror those in the C++ infrastructure.
erpc - Python package for eRPC infrastructure.
setup.py - setuptools setup script that installs the erpc package.
setup.cfg, README_Pypi.md - necessary files for the pypi support.
Pip package installer needs to be installed in your Python version. Use following way for Python3 pip installation:
sudo apt-get install python3-pip
/usr/bin$ sudo rm python
/usr/bin$ sudo ln -s python3 pythonTo install the eRPC Python infrastructure, run the setup.py script like this (based on your system admin rights are required):
python setup.py installAlternatively, you may use pip to install the package, like this:
pip install .Once installed, you can access the infrastructure via a standard import statement.
import erpc
xport = erpc.transport.SerialTransport("/dev/ttyS1", 115200)
client = erpc.client.ClientManager(xport, erpc.basic_codec.BasicCodec)