This is an automated email from Gerrit. Paul Fertser (fercer...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4487
-- gerrit commit 385b5e4dac0717d1be433dd82a789d19955d7ce7 Author: Paul Fertser <fercer...@gmail.com> Date: Mon Apr 9 23:00:10 2018 +0300 contrib: rpc_examples: python: fix memory retrieval mem2array returns a Tcl (associative) array and so the order of elements is not guaranteed. Treat it as such. Change-Id: Ie4d1219faac1e60247ca13bc2eedf22041a9a9e9 Signed-off-by: Paul Fertser <fercer...@gmail.com> diff --git a/contrib/rpc_examples/ocd_rpc_example.py b/contrib/rpc_examples/ocd_rpc_example.py index 6c8529c..b585aaa 100755 --- a/contrib/rpc_examples/ocd_rpc_example.py +++ b/contrib/rpc_examples/ocd_rpc_example.py @@ -92,9 +92,10 @@ class OpenOcd: self.send("array unset output") # better to clear the array before self.send("mem2array output %d 0x%x %d" % (wordLen, address, n)) - output = self.send("ocd_echo $output").split(" ") + output = [*map(int, self.send("ocd_echo $output").split(" "))] + d = dict([tuple(output[i:i + 2]) for i in range(0, len(output), 2)]) - return [int(output[2*i+1]) for i in range(len(output)//2)] + return [d[k] for k in sorted(d.keys())] def writeVariable(self, address, value): assert value is not None -- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ OpenOCD-devel mailing list OpenOCD-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openocd-devel