boards/platforms/kcu105: avoid unnecessary {{}} on INTERNAL_VREF.
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 9 Mar 2020 08:37:31 +0000 (09:37 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 9 Mar 2020 08:37:31 +0000 (09:37 +0100)
litex/boards/platforms/kcu105.py

index 820293b4e4af134dadc793ba2971b3162e8f646f..da916f35e666678b89b6f02ba10656fe721ce918 100644 (file)
@@ -498,6 +498,6 @@ class Platform(XilinxPlatform):
 
     def do_finalize(self, fragment):
         XilinxPlatform.do_finalize(self, fragment)
-        self.add_platform_command("set_property INTERNAL_VREF {{0.84}} [get_iobanks 44]")
-        self.add_platform_command("set_property INTERNAL_VREF {{0.84}} [get_iobanks 45]")
-        self.add_platform_command("set_property INTERNAL_VREF {{0.84}} [get_iobanks 46]")
+        self.add_platform_command("set_property INTERNAL_VREF 0.84 [get_iobanks 44]")
+        self.add_platform_command("set_property INTERNAL_VREF 0.84 [get_iobanks 45]")
+        self.add_platform_command("set_property INTERNAL_VREF 0.84 [get_iobanks 46]")