12 lines
377 B
Python
12 lines
377 B
Python
from misoclib.com.liteeth.common import *
|
|
from misoclib.com.liteeth.generic import *
|
|
|
|
def UARTPHY(pads, *args, **kwargs):
|
|
# Autodetect PHY
|
|
if hasattr(pads, "source_stb"):
|
|
from misoclib.com.uart.phy.sim import UARTPHYSim
|
|
return UARTPHYSim(pads, *args, **kwargs)
|
|
else:
|
|
from misoclib.com.uart.phy.serial import UARTPHYSerial
|
|
return UARTPHYSerial(pads, *args, **kwargs)
|