plugins/canfestival/canfestival.py
changeset 26 7bc11b005c8b
parent 25 fa7503684c28
child 30 ea685658b388
--- a/plugins/canfestival/canfestival.py	Mon Sep 10 18:19:53 2007 +0200
+++ b/plugins/canfestival/canfestival.py	Tue Sep 11 08:00:28 2007 +0200
@@ -20,6 +20,7 @@
       <xsd:element name="CanFestivalNode">
         <xsd:complexType>
           <xsd:attribute name="CAN_Device" type="xsd:string" use="required" />
+          <xsd:attribute name="Sync_TPDOs" type="xsd:boolean" use="required" default="true"/>
         </xsd:complexType>
       </xsd:element>
     </xsd:schema>
@@ -76,7 +77,7 @@
         prefix = "_".join(map(lambda x:str(x), current_location))
         Gen_OD_path = os.path.join(buildpath, prefix + "_OD.c" )
         # Create a new copy of the model with DCF loaded with PDO mappings for desired location
-        master = config_utils.GenerateConciseDCF(locations, current_location, self)
+        master = config_utils.GenerateConciseDCF(locations, current_location, self, self.CanFestivalNode.getSync_TPDOs())
         res = gen_cfile.GenerateFile(Gen_OD_path, master)
         if res :
             raise Exception, res