targets/LPC/__init__.py
changeset 717 1c23952dbde1
parent 691 bb340874f09e
child 725 31dade089db5
--- a/targets/LPC/__init__.py	Thu May 03 19:02:34 2012 +0200
+++ b/targets/LPC/__init__.py	Mon May 07 18:47:29 2012 +0200
@@ -6,9 +6,9 @@
 class LPC_target(toolchain_makefile):
     #extension = ".ld"
     #DebugEnabled = False
-    def __init__(self, PluginsRootInstance):
+    def __init__(self, ConfigTreeRootInstance):
         self.binmd5key = None
-        toolchain_makefile.__init__(self, PluginsRootInstance)
+        toolchain_makefile.__init__(self, ConfigTreeRootInstance)
 
     def _GetBinMD5FileName(self):
         return os.path.join(self.buildpath, "lastbuildPLCbin.md5")
@@ -64,7 +64,7 @@
             f.write(self.binmd5key)
             f.close()
             try:
-                self.PluginsRootInstance.logger.write(
+                self.ConfigTreeRootInstance.logger.write(
                     _("Binary is %s bytes long\n")%
                         str(os.path.getsize(
                             os.path.join(self.buildpath, "ArmPLC_rom.bin"))))