# HG changeset patch # User Laurent Bessard # Date 1368179284 -7200 # Node ID 1a97222ffee92f80df9c463bec11bfc250a16b72 # Parent 16e5b6abd91c30eb4be214186f5429086a1f8646 Fixed bug in generated code in c_ext file diff -r 16e5b6abd91c -r 1a97222ffee9 c_ext/c_ext.py --- a/c_ext/c_ext.py Fri May 10 11:47:35 2013 +0200 +++ b/c_ext/c_ext.py Fri May 10 11:48:04 2013 +0200 @@ -40,15 +40,15 @@ location_str = "_".join(map(str, current_location)) text = "/* Code generated by Beremiz c_ext confnode */\n\n" - text += "#include " + text += "#include \n\n" # Adding includes text += "/* User includes */\n" text += self.CodeFile.includes.gettext() text += "\n" - text += '#include "iec_types_all.h"' - + text += '#include "iec_types_all.h"\n\n' + # Adding variables config = self.GetCTRoot().GetProjectConfigNames()[0] text += "/* User variables reference */\n" @@ -65,6 +65,7 @@ # Adding user global variables and routines text += "/* User internal user variables and routines */\n" text += self.CodeFile.globals.gettext() + text += "\n" # Adding Beremiz confnode functions text += "/* Beremiz confnode functions */\n"