summaryrefslogtreecommitdiff
path: root/build_and_program.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-08-29 20:08:34 +0200
committerYuval Adam <_@yuv.al>2025-08-29 20:08:34 +0200
commit417ec05cc68242b72ce1260153051e07da4d8240 (patch)
tree39219877121a602a7748cb9ba4709e8b972dabd1 /build_and_program.py
parentd096f707822967aa99d37605198fc9acd5f6a90d (diff)
Cleanup things
Diffstat (limited to 'build_and_program.py')
-rw-r--r--build_and_program.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/build_and_program.py b/build_and_program.py
deleted file mode 100644
index ba6c139..0000000
--- a/build_and_program.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python3
-
-import os
-import sys
-
-# Add Vivado to PATH
-vivado_bin = os.path.expanduser("~/Xilinx/2025.1/Vivado/bin")
-os.environ["PATH"] = vivado_bin + ":" + os.environ.get("PATH", "")
-
-# Now run the original blinky script
-from blinky import Blinky
-from platform_alchitry_pt import AlchitryPtPlatform
-
-if __name__ == "__main__":
- platform = AlchitryPtPlatform()
- platform.build(Blinky(), do_program=True) \ No newline at end of file