ME 333 Lab 5

From Mech
Jump to navigationJump to search

(Note: When you link to a page on this wiki, use an internal link such as this, generated by [[Main Page | this]], instead of an external link such as this, generated by [http://hades.mech.northwestern.edu/wiki this]. This is so the link will continue to work even if the wiki is moved to another server.)

In Lab 5, you will create your own wiki page describing some useful PIC-related function. Good resources include this mechatronics wiki itself (some of these functions may be partially documented), the PIC C compiler website and sample code that comes with the compiler, the two manuals with the PIC C compiler, application notes at the Microchip website, and just general google searches on the topic.

Each page should have four headings: Original Assignment, Overview, Circuit, and Code. See the Example Writeup: Analog Input for an example. The Original Assignment indicates what you were assigned to do, and I will eventually erase it from the final page. The Overview is your rewritten version that clearly indicates what the page is about (to future students accessing the page) and should also include links to other good web sources of information on this topic, the Circuit shows a professional-looking circuit diagram including part numbers and where they can be obtained (and, where helpful, a photo of a neatly wired implementation of the circuit), and Code gives a listing of the liberally commented code, which should otherwise be as simple as possible (do not have extraneous lines of code that don't relate directly to the objective of the page). You may also wish to add a Further Reading section at the end of the page, with links to other useful sites on the topic. If not, you should make sure that your Overview has these links.

You are welcome to change the structure of your page to something other than these headings only if necessary to improve the clarity of the page. Don't erase the Original Assignment section.

Every topic that uses interrupts to implement a function should report how long it takes the interrupt to complete the service routine. One way to do this is to set a digital output pin "high" at the beginning of the interrupt service routine, then set it low at the end. Then look at this digital output on an oscilloscope. If the interrupt routine is occurring every 1 ms, then you should see a pulse every 1 ms, and the duration of the pulse tells you approximately how much time it takes your ISR to execute. If you don't clearly see a pulse of less than 1 ms every 1 ms, then your ISR may be taking more than its allotted time, and you need to either increase the time between ISR calls or decrease the complexity of your code in the ISR. Remember that bitwise operations such as &, |, !, >>, or << are fast, math operations on unsigned integers are slower, math operations on signed integers are slower still, math operations on floats are slower still, and trigonometric and other complex functions are very slow. If you have two different ISRs, say one at 1 ms intervals and another at 13 ms intervals (for example), use a different pin to time each and display the two channels simultaneously on your oscilloscope to understand the timing.

Your lab will be graded on functionality (how well you have completed the objective) and the usefulness of your wiki page (how clearly it is written and documented with images or other supporting material). If you use figures or information you found elsewhere on the web, give a citation (link) to the original source. Do not use copyrighted work!

Drawing Circuit Schematics

There is no particular recommended software for drawing your circuit schematics. You can do it with almost any drawing program, with the pain of creating your own circuit elements. You can find a number of free schematic drawing programs, including Express PCB and PCB123, here, including printed circuit board (PCB) layout. For this assignment, we just want schematics, not PCB layouts, and they should be captured as images. Prof. Peshkin recommends trying CircuitMaker, which is no longer supported but runs fine under Windows XP. Eagle runs under Windows, MacOS, and Linux.

Other circuit drawing software:

  • Microsoft Word (Draw symbols using the shapes and wires with the flowchart connectors. You can find an example here.)
  • XCircuit: Open source software that runs on Windows, Unix, and UNIX/X11 based Macs.
  • Microsoft Visio: Not recommended, but it might do for simple circuits.
  • PSpice Student: Similar to Circuitmaker.

Lab 5 Assignments


Lab 5 assignments:


Future:


From 2008: