From 5140668c317b9b5ebed5175a37ccc41166866152 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 24 May 2022 16:19:57 +0200 Subject: [PATCH] build/osfpga: Rename blinky.py to test_blinky.py. --- litex/build/osfpga/{blinky.py => test_blinky.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename litex/build/osfpga/{blinky.py => test_blinky.py} (90%) diff --git a/litex/build/osfpga/blinky.py b/litex/build/osfpga/test_blinky.py similarity index 90% rename from litex/build/osfpga/blinky.py rename to litex/build/osfpga/test_blinky.py index 38baa7a01..89feb2bd3 100755 --- a/litex/build/osfpga/blinky.py +++ b/litex/build/osfpga/test_blinky.py @@ -22,7 +22,7 @@ _io = [ class Platform(OSFPGAPlatform): def __init__(self): - OSFPGAPlatform.__init__(self, device=None, toolchain="raptor", io=_io) # FIXME: Add device support. + OSFPGAPlatform.__init__(self, device="test", toolchain="raptor", io=_io) # Minimal Design -----------------------------------------------------------------------------------