Difference between revisions of "NU32 Videos"

From Mech
Jump to navigationJump to search
Line 1: Line 1:
This page has a number of videos supporting chapters in the book [[NU32|Embedded Computing and Mechatronics with the PIC32 Microcontroller]]. Some of these videos were created for a preliminary (alpha) version of the NU32 development board, which used the PIC32MX795F512L 100-pin chip. Those videos will gradually be updated for the final production version of the NU32, which uses the PIC32MX795F512H 64-pin chip. Sample code for the book can be downloaded from the [[NU32|NU32 page]].
This page has a number of videos supporting chapters in the book [[NU32|Embedded Computing and Mechatronics with the PIC32 Microcontroller]]. Sample code for the book used in these videos can be downloaded from the [[NU32|NU32 page]]. The sample code is for the PIC32MX795F512H as it is used on the NU32 development board.


Most of the videos below were created using the [https://sites.google.com/site/northwesternlightboard/ Lightboard], an ingenious and easy-to-use device developed by Prof. Michael Peshkin at Northwestern University. Our deepest gratitude to him and Prof. Alex Birdwell, who runs the Lightboard Studio at Northwestern.
Most of the videos below were created using the [https://sites.google.com/site/northwesternlightboard/ Lightboard], an ingenious and easy-to-use device developed by Prof. Michael Peshkin at Northwestern University. Our gratitude to Prof. Peshkin and Prof. Alex Birdwell, who runs the Lightboard Studio at Northwestern.


===Appendix A: A Crash Course in C===
===Appendix A: A Crash Course in C===

Revision as of 02:24, 21 December 2015

This page has a number of videos supporting chapters in the book Embedded Computing and Mechatronics with the PIC32 Microcontroller. Sample code for the book used in these videos can be downloaded from the NU32 page. The sample code is for the PIC32MX795F512H as it is used on the NU32 development board.

Most of the videos below were created using the Lightboard, an ingenious and easy-to-use device developed by Prof. Michael Peshkin at Northwestern University. Our gratitude to Prof. Peshkin and Prof. Alex Birdwell, who runs the Lightboard Studio at Northwestern.

Appendix A: A Crash Course in C

Videos:

Click here for a playlist of all videos in this chapter

  1. Writing your first program in C, HelloWorld.c (5:09). Chapter A.1.
  2. Differences between C and MATLAB (7:30). Chapter A.2.
  3. Binary and hexadecimal (Base 2 and 16) (4:47). Chapter A.3.1.
  4. C data types (5:30). Chapter A.3.1.
  5. Using C data types (3:49). Chapter A.3.1.
  6. Representations of C data types (5:15). Chapter A.3.1.
  7. C pointer basics (5:54). Chapter A.3.2.
  8. Sample program: printout.c (5:55). Chapter A.4.
  9. Sample program: datasizes.c (2:57). Chapter A.4.
  10. Sample program: overflow.c (2:43). Chapter A.4.
  11. Sample program: typecast.c (5:43). Chapter A.4.
  12. invest.c, part 1/5: intro to a typical C program (4:18). Chapter A.4.
  13. invest.c, part 2/5: overview (3:58). Chapter A.4.
  14. invest.c, part 3/5: sections 1-4: program comments, preprocessor commands, new data type definitions, and global variables (4:48). Chapter A.4.
  15. invest.c, part 4/5: sections 5-6: helper function prototypes and the main function (4:40). Chapter A.4.
  16. invest.c, part 5/5: section 7: helper functions (7:42). Chapter A.4.
  17. Header files and libraries (9:31). Chapter A.4.15.

Chapter 1: Quickstart

Click here for a playlist of all videos in this chapter for the Mac (and, almost, Linux)

Click here for a playlist of all videos in this chapter for Windows

Intro video for all host computers:

  1. NU32 quickstart introduction (2:06)

Videos specific for the Mac (and, almost, Linux):

  1. NU32 quickstart for Mac, part 1/3: software downloads (7:11)
  2. NU32 quickstart for Mac, part 2/3: compiling and loading (4:04)
  3. NU32 quickstart for Mac, part 3/3: using make (5:31)

Videos specific for Windows:

  1. NU32 quickstart for Windows, part 1/3: software downloads (5:55)
  2. NU32 quickstart for Windows, part 2/3: compiling and loading (4:36)
  3. NU32 quickstart for Windows, part 3/3: using make (5:13)

Chapter 2: Hardware

Videos:

Click here for a playlist of all videos in this chapter

  1. Introduction to the PIC32 microcontroller (4:42)
  2. Introduction to the PIC32 architecture (6:02)
  3. The PIC32 physical memory map (5:20)
  4. Introduction to the NU32 development board (2:28)

Chapter 3: Software

Videos:

Click here for a playlist of all videos in this chapter

  1. The PIC32 virtual memory map (5:24)
  2. Understanding simplePIC.c (6:34).
  3. Digging through PIC32 header files (6:19).
  4. The PIC32 executable build process (3:36).

Chapter 4: Using Libraries

Video:

  1. The NU32 library (5:20)

Chapter 5: Time and Space

Videos:

Click here for a playlist of all videos in this chapter

  1. Timing PIC32 code and the disassembly file (11:11).
  2. The PIC32 memory map file (8:20).

Chapter 6: Interrupts

Videos:

Click here for a playlist of all videos in this chapter

  1. Overview of interrupts on the PIC32 (4:29)
  2. PIC32 interrupt SFRs (6:22)
  3. The PIC32 shadow register set (1:25)
  4. Seven steps to using an interrupt with the PIC32 (3:47)
  5. PIC32 interrupt code example (4:19)

Chapter 7: Digital Input and Output

Videos:

Click here for a playlist of all videos in this chapter

  1. Intro to digital I/O on the PIC32 (6:24)
  2. Change notification on the PIC32 (1:18)
  3. PIC32 program with digital I/O and change notification (4:33)

Chapter 8: Counters / Timers

Videos:

Click here for a playlist of all videos in this chapter

  1. Intro to PIC32 counter/timers (5:59)
  2. PIC32 timer SFRs (5:55)
  3. Using PIC32 timers to generate interrupts (2:39)
  4. Example PIC32 timer interrupt program (3:42)

Chapter 9: Output Compare

Videos:

Click here for a playlist of all videos in this chapter

  1. Introduction to the PIC32 output compare (5:30)
  2. A PWM program on the PIC32 (3:10)
  3. Using output compare to create an analog output (3:09)

Chapter 10: Analog Input

Video:

  1. The PIC32 analog-to-digital converter (6:47)

Chapter 23: PID Feedback Control

Videos:

Click here for a playlist of all videos in this chapter

  1. Introduction to PID control (4:28)
  2. Improving the basic PID control algorithm (2:33)
  3. PID control of a mass-spring-damper (4:10)
  4. P, PI, and PD variants of PID control (2:42)
  5. Empirical PID gain tuning (7:08)

Chapter 25: Brushed Permanent Magnet DC Motors

Videos:

Click here for a playlist of all videos in this chapter

  1. Intro to brushed permanent magnet DC motors, part 1/2 (4:31)
  2. Intro to brushed permanent magnet DC motors, part 2/2 (7:10)
  3. Brushed DC motor equations (6:53)
  4. Brushed DC motor speed-torque curve (5:59)
  5. The DC motor speed-torque plane (4:27)
  6. DC motor electrical and mechanical power in the speed-torque plane (3:52)
  7. DC motor output power (2:05)
  8. Friction in DC motors (0:55)
  9. A DC motor data sheet (4:34)

Chapter 26: Gearing and Motor Sizing

Videos:

Click here for a playlist of all videos in this chapter

  1. Introduction to gears (4:12)
  2. Gear efficiency (2:40)
  3. Types of gears (3:47)

Chapter 27: DC Motor Control

Videos:

Click here for a playlist of all videos in this chapter

  1. Driving DC motors, part 1/3: Flyback diodes (7:03)
  2. Driving DC motors, part 2/3: PWM (3:05)
  3. Driving DC motors, part 3/3: H-bridges (4:22)
  4. A professional motor control system (6:55)