From d33387c8598df1cfc21e939d919819983b893edd Mon Sep 17 00:00:00 2001 From: Charlotte Date: Tue, 10 Oct 2023 11:56:25 +1100 Subject: [PATCH] serial: some more nMigen -> Amaranth. --- amaranth_stdio/serial.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/amaranth_stdio/serial.py b/amaranth_stdio/serial.py index 3026004..65373c6 100644 --- a/amaranth_stdio/serial.py +++ b/amaranth_stdio/serial.py @@ -55,8 +55,8 @@ class AsyncSerialRX(Elaboratable): Data width. parity : ``"none"``, ``"mark"``, ``"space"``, ``"even"``, ``"odd"`` Parity mode. - pins : :class:`nmigen.lib.io.Pin` - Optional. UART pins. See :class:`nmigen_boards.resources.UARTResource` for layout. + pins : :class:`amaranth.lib.io.Pin` + Optional. UART pins. See :class:`amaranth_boards.resources.UARTResource` for layout. Attributes ---------- @@ -160,8 +160,8 @@ class AsyncSerialTX(Elaboratable): Data width. parity : ``"none"``, ``"mark"``, ``"space"``, ``"even"``, ``"odd"`` Parity mode. - pins : :class:`nmigen.lib.io.Pin` - Optional. UART pins. See :class:`nmigen_boards.resources.UARTResource` for layout. + pins : :class:`amaranth.lib.io.Pin` + Optional. UART pins. See :class:`amaranth_boards.resources.UARTResource` for layout. Attributes ---------- @@ -243,8 +243,8 @@ class AsyncSerial(Elaboratable): Data width. parity : ``"none"``, ``"mark"``, ``"space"``, ``"even"``, ``"odd"`` Parity mode. - pins : :class:`nmigen.lib.io.Pin` - Optional. UART pins. See :class:`nmigen_boards.resources.UARTResource` for layout. + pins : :class:`amaranth.lib.io.Pin` + Optional. UART pins. See :class:`amaranth_boards.resources.UARTResource` for layout. Attributes ----------