examples: fix typos

This commit is contained in:
Fischer Moseley 2024-11-07 09:50:55 -07:00
parent 599384ecc2
commit 9ac3181502
4 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ class UARTIOCoreExample(Elaboratable):
# Create Manta instance
self.manta = Manta()
# Configure it to communicate over Ethernet
# Configure it to communicate over UART
self.manta.interface = UARTInterface(
port=port,
baudrate=2000000,

View File

@ -13,7 +13,7 @@ class UARTLogicAnalyzerExample(Elaboratable):
# Create Manta instance
self.manta = Manta()
# Configure it to communicate over Ethernet
# Configure it to communicate over UART
self.manta.interface = UARTInterface(
port=port,
baudrate=2000000,

View File

@ -11,7 +11,7 @@ class UARTMemoryCoreExample(Elaboratable):
# Create Manta instance
self.manta = Manta()
# Configure it to communicate over Ethernet
# Configure it to communicate over UART
self.manta.interface = UARTInterface(
port=port,
baudrate=2000000,

View File

@ -31,6 +31,6 @@ ethernet:
refclk_freq: 50e6
clk_freq: 50e6
fpga_ip_addr: "192.168.0.110"
host_ip_addr: "192.168.0.100"
fpga_ip_addr: "10.0.0.2"
host_ip_addr: "10.0.0.1"
udp_port: 2000