mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
18 lines
418 B
Python
18 lines
418 B
Python
#
|
|
# This file is part of LiteX.
|
|
#
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
import unittest
|
|
|
|
from migen import *
|
|
|
|
from litex.soc.cores.i2s import S7I2S
|
|
|
|
|
|
class TestI2S(unittest.TestCase):
|
|
def test_s7i2sslave_syntax(self):
|
|
i2s_pads = Record([("rx", 1), ("tx", 1), ("sync", 1), ("clk", 1)])
|
|
i2s = S7I2S(pads=i2s_pads, fifo_depth=256)
|
|
|