mirror of
https://github.com/supleed2/EIE4-FYP.git
synced 2024-11-09 20:05:49 +00:00
Add Sawtooth module to build
This commit is contained in:
parent
4be040e449
commit
2b18d82358
7
make.py
7
make.py
|
@ -28,6 +28,7 @@ from litedram.phy import ECP5DDRPHY
|
|||
|
||||
from testLED import TestLed
|
||||
from testRGB import TestRgb
|
||||
from testSaw import TestSaw
|
||||
|
||||
# CRG ---------------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -225,6 +226,12 @@ class BaseSoC(SoCCore):
|
|||
)
|
||||
])
|
||||
|
||||
# DAC Control / Audio Blocks ---------------------------------------------------------------
|
||||
self.audio = TestSaw(
|
||||
platform = platform,
|
||||
pads = platform.request("dac_pcm")
|
||||
)
|
||||
|
||||
# Build --------------------------------------------------------------------------------------------
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in a new issue