Skip to content

Commit 8321c38

Browse files
zelenskiCS107E Bot
authored and
CS107E Bot
committed
Include reminder about make install (for app) versus make test (for test program)
commit 0c05c19063d8be2ebe620932484e9d519d05b17c Author: Julie Zelenski <[email protected]> Date: Tue Jan 29 23:27:19 2019 -0800 Include reminder about make install (for app) versus make test (for test program)
1 parent e257058 commit 8321c38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assignments/assign2/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Create bit patterns for all the digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
180180
A, B, C, D, E, F. You won't be displaying A-F for this assignment, but they
181181
may be useful in the future.
182182

183-
Test this part by adding code to the `main()` function of `apps/clock.c` to display a single digit. Verify that your bit patterns are correct by displaying each digit value from `0` to `9`.
183+
Add code to the `main()` function of `apps/clock.c` to display a single digit. Verify that your bit patterns are correct by displaying each digit value from `0` to `9`. Use `make install` to build and run your clock application.
184184

185185
#### 4. Implement timer module
186186

@@ -201,7 +201,7 @@ For this module, note that we only care about the lower
201201
not bus addresses (0x7E... for peripherals), so you'll need to
202202
change the 0x7E... prefix in any peripheral address to 0x20.
203203

204-
Uncomment the call `test_timer()` in `tests/test_gpio_timer.c` and re-run the test program to verify these tests succeed. Consider what additional tests are needed for the timer module (there may not be much; it is a pretty simple module). Once both modules are passing all of your tests, you're ready to tackle the rest of the clock application.
204+
Uncomment the call `test_timer()` in `tests/test_gpio_timer.c`. Use `make test` to build and re-run the test program. Verify the given tests succeed and then consider what additional tests are needed for the timer module (there may not be much; it is a pretty simple module). Once both the gpio and timer modules are passing all of your tests, you're ready to tackle the rest of the clock application.
205205

206206
#### 5. Write display refresh loop
207207

0 commit comments

Comments
 (0)