We provide a module file as an interface for Python.
The Python module file name of API-CAN(WDM)
is ccan.py.
When using this module, import processing is required.
For example, when importing ccan.py
import ccan
API-CAN(WDM) functions can be called by functions
in the module.
Therefore, when calling an API-CAN(WDM) function, add a period "."
after the namespace name and call the function.
In Python, the characters of the module name without the extension ".py" are the namespace.
For example, when you want to call the CanInit function
Ret.value = ccan.CanInit()
The contents of the parameters and the return
value of functions are common regardless of the development language.
Please refer to the function reference for details.