Schedule


Below is a preview of our week-by-week plan for the entire quarter. There may be slight adjustments and rearrangements as we go. The schedule for the final project is set and will not change.

In the readings below, K&R refers to Kernighan and Ritchie's classic text The C Programming Language (accessible via Stanford's subscription to Safari Books Online). Nick Parlante's EssentialC is another great C reference. Please do the recommended readings before lecture for best effect!

Week 1
Lecture
Mon 1/5
Welcome and intro to RISC-V ( slides, code )

Readings:

Lab/assign Lab 0: Orientation ( writeup )

Please do the Lab 0 prelab preparation before coming to lab.

Assignment 0: Git oriented ( writeup )
Lecture
Fri 1/9
RISC-V assembly and machine code ( slides, code )
Week 2
Lecture
Mon 1/12
From Assembly to C ( slides, code )
  • Brush up on C basics (syntax, data types, operators, control structures) via your favorite C reference; sections 1-2 of Nick Parlante's EssentialC; or chapters 1, 2, and 3 of K&R. Skip content on I/O and standard libraries (we are bare metal!)
  • Read Dennis Ritchie's account of the history of C
  • Try out the Compiler Explorer demoed in lecture
  • Read our guides on make and gcc
Lab/assign Lab 1: Getting to know your Mango Pi ( writeup )

Please do the Lab 1 prelab preparation before coming to lab.

Assignment 1: Larson Scanner ( writeup )
Lecture
Fri 1/16
C Pointers and Arrays ( slides, code )
  • Review EssentialC chapters 3 and 6 (postpone heap and memory management for later) or K&R 5.1-5.4.
  • C volatile can be subtle and tricky. See GeeksForGeeks advice on correct use and John Regehr's blog on what NOT to do with volatile
Week 3
Lecture
Mon 1/19
MLK Day (no lecture)
Lab/assign Lab 2: Below C Level ( writeup )

Prelab to prep before lab.

Assignment 2: Clock ( writeup )
Lecture
Fri 1/23
C Functions ( slides, code )
  • Read up on C functions (Chapter 4 in K&R, or Section 4 in Essential C).
Week 4
Lecture
Mon 1/26
Communication and the Serial Protocol ( slides, code )
  • Review this excellent tutorial on serial communication from Sparkfun.
  • Use your C reference to read up characters, C-strings, and output functions (putc,puts,printf) (Sections 1.5, 1.6, 1.9, 5.5, 6, 7 in K&R; or Section 3 in EssentialC). C-strings are primitive compared to Java/C++ strings; take note of the manual effort required to use and pitfalls to avoid.
  • Historical diversion: Poul-Henning Kamp's essay on The Most Expensive One-byte Mistake. Did Ken, Dennis, and Brian choose wrong with NUL-terminated text strings?
Lab/assign Lab 3: Debugging and Testing ( writeup )

Prelab to prep before lab.

Assignment 3: String Formatting ( writeup )
Lecture
Fri 1/30
Modules, Libraries, and Linking ( slides, code )
Week 5
Lecture
Mon 2/2
Memory Management ( slides, code )
  • Read our overview of stack frames
  • Review dynamic memory allocation (malloc/free in C) and the operation of the heap (K&R 5.6-5.9 or Essential C Section 6). Compare and contrast stack versus heap allocation. Why do we need both?
Lab/assign Lab 4: Linked and Loaded ( writeup )

Prelab to prep before lab.

Assignment 4: Stack and Heap
Lecture
Fri 2/6
C Mastery
Week 6
Lecture
Mon 2/9
Keyboards and the PS/2 Protocol
Lab/assign Lab 5: Keyboard Surfin' Assignment 5: Keyboard and Simple Shell
Lecture
Fri 2/13
Graphics and the framebuffer
Week 7
Lecture
Mon 2/16
Presidents Day (no lecture)
Lab/assign Lab 6: Drawing into the Framebuffer Assignment 6: Graphics Library and Console
Lecture
Fri 2/20
Interrupts
Week 8
Lecture
Mon 2/23
Interrupts, cont'd
Lab/assign Lab 7: Mango Pi, Interrupted Assignment 7: System Monitor with Interrupts
Lecture
Fri 2/27
Project
Week 9
Lecture
Mon 3/2
Sensor Input
Lab/assign Lab 8: Project Team Meeting 1 Final Project
Lecture
Fri 3/6
Output
Week 10
Lecture
Mon 3/9
TBA
Lab/assign Lab 9: Project Team Meeting 2
Lecture
Fri 3/13
Wrap or There and Back Again
Week 11
Final Project
Demo session Fri 3/20 at 9:00 am
Code submission due Fri 3/20 at 11:59 pm