From 2e8c577cc6d19a458911eba327440a79a2adef63 Mon Sep 17 00:00:00 2001 From: kruger <kruger@astron.nl> Date: Mon, 27 Mar 2023 12:18:16 +0200 Subject: [PATCH] call method bug fixed --- pypcc/i2cdirect.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pypcc/i2cdirect.py b/pypcc/i2cdirect.py index df7f7df..2c1ff4e 100644 --- a/pypcc/i2cdirect.py +++ b/pypcc/i2cdirect.py @@ -1,4 +1,4 @@ -name='RECVTR_LB_TEST' #YAML config file with all register values etc +#name='RECVTR_LB_TEST' #YAML config file with all register values etc import logging #import argparse @@ -60,7 +60,7 @@ class i2cdirect(): def runmethod(self,methodname): logging.info("Run method:"+methodname) - methodid=self.conf.getmethodid("methodname"); + methodid=self.conf.getmethodid(methodname); var1=self.conf.getmethod(methodid) drv=var1.get('drivercls'); for inst in var1['instructions']: @@ -96,4 +96,4 @@ class i2cdirect(): continue; logging.warn("Unknown instruction "+key) - return \ No newline at end of file + return -- GitLab