From 16e3d0cc5dc4309362609e1b373c06bae3b11bd0 Mon Sep 17 00:00:00 2001 From: Gerrit Beine Date: Fri, 29 Aug 2025 14:21:44 +0200 Subject: [PATCH 1/2] Add COE interface plugin to the list. --- doc/plugin-interface.rst | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/doc/plugin-interface.rst b/doc/plugin-interface.rst index d841281e8..2f295b678 100644 --- a/doc/plugin-interface.rst +++ b/doc/plugin-interface.rst @@ -62,23 +62,25 @@ The table below lists interface drivers that can be added by installing addition .. note:: The packages listed below are maintained by other authors. Any issues should be reported in their corresponding repository and **not** in the python-can repository. -+----------------------------+-------------------------------------------------------+ -| Name | Description | -+============================+=======================================================+ -| `python-can-canine`_ | CAN Driver for the CANine CAN interface | -+----------------------------+-------------------------------------------------------+ -| `python-can-cvector`_ | Cython based version of the 'VectorBus' | -+----------------------------+-------------------------------------------------------+ -| `python-can-remote`_ | CAN over network bridge | -+----------------------------+-------------------------------------------------------+ -| `python-can-sontheim`_ | CAN Driver for Sontheim CAN interfaces (e.g. CANfox) | -+----------------------------+-------------------------------------------------------+ -| `zlgcan`_ | Python wrapper for zlgcan-driver-rs | -+----------------------------+-------------------------------------------------------+ -| `python-can-cando`_ | Python wrapper for Netronics' CANdo and CANdoISO | -+----------------------------+-------------------------------------------------------+ -| `python-can-candle`_ | A full-featured driver for candleLight | -+----------------------------+-------------------------------------------------------+ ++----------------------------+----------------------------------------------------------+ +| Name | Description | ++============================+==========================================================+ +| `python-can-canine`_ | CAN Driver for the CANine CAN interface | ++----------------------------+----------------------------------------------------------+ +| `python-can-cvector`_ | Cython based version of the 'VectorBus' | ++----------------------------+----------------------------------------------------------+ +| `python-can-remote`_ | CAN over network bridge | ++----------------------------+----------------------------------------------------------+ +| `python-can-sontheim`_ | CAN Driver for Sontheim CAN interfaces (e.g. CANfox) | ++----------------------------+----------------------------------------------------------+ +| `zlgcan`_ | Python wrapper for zlgcan-driver-rs | ++----------------------------+----------------------------------------------------------+ +| `python-can-cando`_ | Python wrapper for Netronics' CANdo and CANdoISO | ++----------------------------+----------------------------------------------------------+ +| `python-can-candle`_ | A full-featured driver for candleLight | ++----------------------------+----------------------------------------------------------+ +| `python-can-coe`_ | A CAN-over-Ethernet interface for Technische Alternative | ++----------------------------+----------------------------------------------------------+ .. _python-can-canine: https://github.com/tinymovr/python-can-canine .. _python-can-cvector: https://github.com/zariiii9003/python-can-cvector @@ -87,4 +89,5 @@ The table below lists interface drivers that can be added by installing addition .. _zlgcan: https://github.com/jesses2025smith/zlgcan-driver .. _python-can-cando: https://github.com/belliriccardo/python-can-cando .. _python-can-candle: https://github.com/BIRLab/python-can-candle +.. _python-can-coe: https://c0d3.sh/smarthome/python-can-coe From aef758f4cc16b315a00bb34db7e191b958625a44 Mon Sep 17 00:00:00 2001 From: Gerrit Beine Date: Sat, 30 Aug 2025 15:31:04 +0200 Subject: [PATCH 2/2] Add news fragment for documentation change --- doc/changelog.d/1987.added.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/1987.added.md diff --git a/doc/changelog.d/1987.added.md b/doc/changelog.d/1987.added.md new file mode 100644 index 000000000..398add3e3 --- /dev/null +++ b/doc/changelog.d/1987.added.md @@ -0,0 +1 @@ +Add [python-can-coe](https://c0d3.sh/smarthome/python-can-coe) interface plugin to the documentation.