diff -r e0630d262ac3 -r 31dade089db5 targets/LPC/__init__.py --- a/targets/LPC/__init__.py Tue May 08 22:27:49 2012 +0200 +++ b/targets/LPC/__init__.py Wed May 09 00:00:50 2012 +0200 @@ -6,9 +6,9 @@ class LPC_target(toolchain_makefile): #extension = ".ld" #DebugEnabled = False - def __init__(self, ConfigTreeRootInstance): + def __init__(self, CTRInstance): self.binmd5key = None - toolchain_makefile.__init__(self, ConfigTreeRootInstance) + toolchain_makefile.__init__(self, CTRInstance) def _GetBinMD5FileName(self): return os.path.join(self.buildpath, "lastbuildPLCbin.md5") @@ -64,7 +64,7 @@ f.write(self.binmd5key) f.close() try: - self.ConfigTreeRootInstance.logger.write( + self.CTRInstance.logger.write( _("Binary is %s bytes long\n")% str(os.path.getsize( os.path.join(self.buildpath, "ArmPLC_rom.bin"))))