-
I didn't catch that I left some print statements in the def I posted above. It should read:
def programData(self, segments, action):
"""Programm or verify data"""
if DEBUG > 1: sys.stderr.write("* programData()\n")
#count length if progress updates have to be done
if self.showprogess:
total = 0
for seg in segments:
2009-10-07 23:26:55 UTC by cdwilson
-
cliechti committed revision 408 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 1 files.
2009-10-07 01:45:19 UTC by cliechti
-
cliechti committed revision 408 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 1 files.
2009-10-07 01:45:19 UTC by cliechti
-
cliechti committed revision 407 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 1 files.
2009-10-07 01:44:31 UTC by cliechti
-
cliechti committed revision 407 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 1 files.
2009-10-07 01:44:31 UTC by cliechti
-
cliechti committed revision 406 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 8 files.
2009-10-07 00:10:09 UTC by cliechti
-
cliechti committed revision 406 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 8 files.
2009-10-07 00:10:09 UTC by cliechti
-
In bsl.py, the programData method of BootStrapLoader class calculates "count" incorrectly (count keeps getting set to 0 inside the "for seg in segments:" loop). By moving "count = 0" outside the "for seg in segments:" loop, the bug was fixed.
Updated def below:
def programData(self, segments, action):
"""Programm or verify data"""
if DEBUG > 1: sys.stderr.write("*...
2009-10-06 23:52:17 UTC by cdwilson
-
cliechti committed revision 405 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 4 files.
2009-10-06 23:33:11 UTC by cliechti
-
cliechti committed revision 404 of branch mspgcc-core to the GCC toolchain for MSP430 Bazaar repository, changing 1 files.
2009-10-06 23:26:39 UTC by cliechti