Skip to content
Snippets Groups Projects
Commit 2e8c577c authored by Paulus Kruger's avatar Paulus Kruger
Browse files

call method bug fixed

parent 957f25b1
No related branches found
No related tags found
No related merge requests found
Pipeline #46409 passed
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 logging
#import argparse #import argparse
...@@ -60,7 +60,7 @@ class i2cdirect(): ...@@ -60,7 +60,7 @@ class i2cdirect():
def runmethod(self,methodname): def runmethod(self,methodname):
logging.info("Run method:"+methodname) logging.info("Run method:"+methodname)
methodid=self.conf.getmethodid("methodname"); methodid=self.conf.getmethodid(methodname);
var1=self.conf.getmethod(methodid) var1=self.conf.getmethod(methodid)
drv=var1.get('drivercls'); drv=var1.get('drivercls');
for inst in var1['instructions']: for inst in var1['instructions']:
...@@ -96,4 +96,4 @@ class i2cdirect(): ...@@ -96,4 +96,4 @@ class i2cdirect():
continue; continue;
logging.warn("Unknown instruction "+key) logging.warn("Unknown instruction "+key)
return return
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment