@@ -163,11 +163,11 class RCConfiguration(Configuration): | |||||
163 | ''' |
|
163 | ''' | |
164 |
|
164 | |||
165 | self.name = data['name'] |
|
165 | self.name = data['name'] | |
166 | self.ipp = data['ipp'] |
|
166 | self.ipp = float(data['ipp']) | |
167 | self.ntx = data['ntx'] |
|
167 | self.ntx = int(data['ntx']) | |
168 | self.clock_in = data['clock_in'] |
|
168 | self.clock_in = float(data['clock_in']) | |
169 | self.clock_divider = data['clock_divider'] |
|
169 | self.clock_divider = int(data['clock_divider']) | |
170 | self.clock = data['clock'] |
|
170 | self.clock = float(data['clock']) | |
171 | self.time_before = data['time_before'] |
|
171 | self.time_before = data['time_before'] | |
172 | self.time_after = data['time_after'] |
|
172 | self.time_after = data['time_after'] | |
173 | self.sync = data['sync'] |
|
173 | self.sync = data['sync'] |
General Comments 0
You need to be logged in to leave comments.
Login now