Added platform instantiation (missing import statement though)
authorAndrey Miroshnikov <andrey@technepisteme.xyz>
Sat, 13 Nov 2021 09:23:21 +0000 (09:23 +0000)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Sat, 13 Nov 2021 09:23:21 +0000 (09:23 +0000)
src/spec/testing_stage1.py

index 39690b52aa97cc116d73eafd0e2b5e7c8de0beb9..7312c7f880af8c2c95b62f7ecf61758d564e414d 100644 (file)
@@ -1,4 +1,7 @@
 #!/usr/bin/env python
+from nmigen import Platform # Not sure where platform comes from?
+
+# Was thinking of using these functions, but skipped for simplicity for now
 #from pinfunctions import i2s, lpc, emmc, sdmmc, mspi, mquadspi, spi, quadspi, i2c, mi2c, jtag, uart, uartfull, rgbttl, ulpi, rgmii, flexbus1, flexbus2, sdram1, sdram2, sdram3, vss, vdd, sys, eint, pwm, gpio
 
 # File for stage 1 pinmux tested proposed by Luke, https://bugs.libre-soc.org/show_bug.cgi?id=50#c10
@@ -57,5 +60,7 @@ def dummy_pinset():
            }
 
 # testing .....
-resources = dummy_pinset()
-print(resources)
\ No newline at end of file
+p=Platform()
+p.resources=dummy_pinset()
+print(p.resources)
+p.build(Blinker())
\ No newline at end of file