examples: fix typos
This commit is contained in:
parent
599384ecc2
commit
9ac3181502
|
|
@ -13,7 +13,7 @@ class UARTIOCoreExample(Elaboratable):
|
||||||
# Create Manta instance
|
# Create Manta instance
|
||||||
self.manta = Manta()
|
self.manta = Manta()
|
||||||
|
|
||||||
# Configure it to communicate over Ethernet
|
# Configure it to communicate over UART
|
||||||
self.manta.interface = UARTInterface(
|
self.manta.interface = UARTInterface(
|
||||||
port=port,
|
port=port,
|
||||||
baudrate=2000000,
|
baudrate=2000000,
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class UARTLogicAnalyzerExample(Elaboratable):
|
||||||
# Create Manta instance
|
# Create Manta instance
|
||||||
self.manta = Manta()
|
self.manta = Manta()
|
||||||
|
|
||||||
# Configure it to communicate over Ethernet
|
# Configure it to communicate over UART
|
||||||
self.manta.interface = UARTInterface(
|
self.manta.interface = UARTInterface(
|
||||||
port=port,
|
port=port,
|
||||||
baudrate=2000000,
|
baudrate=2000000,
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ class UARTMemoryCoreExample(Elaboratable):
|
||||||
# Create Manta instance
|
# Create Manta instance
|
||||||
self.manta = Manta()
|
self.manta = Manta()
|
||||||
|
|
||||||
# Configure it to communicate over Ethernet
|
# Configure it to communicate over UART
|
||||||
self.manta.interface = UARTInterface(
|
self.manta.interface = UARTInterface(
|
||||||
port=port,
|
port=port,
|
||||||
baudrate=2000000,
|
baudrate=2000000,
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,6 @@ ethernet:
|
||||||
refclk_freq: 50e6
|
refclk_freq: 50e6
|
||||||
clk_freq: 50e6
|
clk_freq: 50e6
|
||||||
|
|
||||||
fpga_ip_addr: "192.168.0.110"
|
fpga_ip_addr: "10.0.0.2"
|
||||||
host_ip_addr: "192.168.0.100"
|
host_ip_addr: "10.0.0.1"
|
||||||
udp_port: 2000
|
udp_port: 2000
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue