Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The arguments in BufferedTx are flipped #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lab7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ The UART component is a Chisel module. You can instantiate it with the
following code:

```scala
val uart = Module(new BufferedTx(115200, 100000000))
val uart = Module(new BufferedTx(100000000, 115200))
```

The first parameter is the baud rate, the second parameter is the clock
frequency. The ```BufferedTx``` component has a read/valid interface to
The first parameter is the clock frequency, the second parameter is the baud rate. The ```BufferedTx``` component has a read/valid interface to
send characters to the UART.

To see the output of the UART you need to connect it to a terminal program.
Expand Down