From 0f64c18da264c5d92d68214a2d3c231695eeb8f1 Mon Sep 17 00:00:00 2001 From: Florian Pose <fp@igh-essen.com> Date: Mon, 2 Jun 2008 13:55:46 +0000 Subject: [PATCH] Adapted to new entry syntax. --- script/slaveinfo2xml.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/slaveinfo2xml.py b/script/slaveinfo2xml.py index b2ec41f2..6a680202 100755 --- a/script/slaveinfo2xml.py +++ b/script/slaveinfo2xml.py @@ -112,7 +112,7 @@ class Device: reRevision = re.compile('Revision number:.*\((\d+)\)') rePdo = re.compile('([RT])xPdo\s+0x([0-9A-F]+)') rePdoEntry = \ - re.compile('0x([0-9A-F]+):([0-9A-F]+) +"([^"]*)", (\d+) bit') + re.compile('0x([0-9A-F]+):([0-9A-F]+),\s+(\d+) bit,\s+"([^"]*)"') pdo = None f = open(fileName, 'r') while True: @@ -139,8 +139,8 @@ class Device: match = rePdoEntry.search(line) if match: pdoEntry = PdoEntry(int(match.group(1), 16), \ - int(match.group(2), 16), match.group(3), \ - int(match.group(4))) + int(match.group(2), 16), match.group(4), \ + int(match.group(3))) pdo.appendEntry(pdoEntry) f.close() -- GitLab