IDE: Disable not-yet-working extensions
authorEdouard Tisserant <edouard.tisserant@gmail.com>
Wed, 22 Nov 2023 19:47:08 +0100
changeset 3873 1ec463e4ac10
parent 3872 5f73b439e78e
child 3874 48d66d3fb3a6
IDE: Disable not-yet-working extensions
features.py
--- a/features.py	Fri Oct 27 22:15:27 2023 +0200
+++ b/features.py	Wed Nov 22 19:47:08 2023 +0100
@@ -11,14 +11,14 @@
 libraries = [
     ('Native', 'NativeLib.NativeLibrary', True),
     ('Python', 'py_ext.PythonLibrary', True),
-    ('Etherlab', 'etherlab.EthercatMaster.EtherlabLibrary', False),
+    # FIXME ('Etherlab', 'etherlab.EthercatMaster.EtherlabLibrary', False),
     ('SVGHMI', 'svghmi.SVGHMILibrary', False)]
 
 catalog = [
     ('opcua', _('OPC-UA client'), _('Map OPC-UA server as located variables'), 'opc_ua.OPCUAClient'),
-    ('canfestival', _('CANopen support'), _('Map located variables over CANopen'), 'canfestival.canfestival.RootClass'),
+    # FIXME ('canfestival', _('CANopen support'), _('Map located variables over CANopen'), 'canfestival.canfestival.RootClass'),
     ('bacnet', _('Bacnet support'), _('Map located variables over Bacnet'), 'bacnet.bacnet.RootClass'),
-    ('etherlab', _('EtherCAT master'), _('Map located variables over EtherCAT'), 'etherlab.etherlab.RootClass'),
+    # FIXME ('etherlab', _('EtherCAT master'), _('Map located variables over EtherCAT'), 'etherlab.etherlab.RootClass'),
     ('modbus', _('Modbus support'), _('Map located variables over Modbus'), 'modbus.modbus.RootClass'),
     ('c_ext', _('C extension'), _('Add C code accessing located variables synchronously'), 'c_ext.CFile'),
     ('py_ext', _('Python file'), _('Add Python code executed asynchronously'), 'py_ext.PythonFile'),