Data logging with an EEPROM

From Mech
Revision as of 01:31, 11 February 2009 by Neil Tiwari (talk | contribs) (→‎Circuit)
Jump to navigationJump to search

Original Assignment

Your task is to use the PIC to log data from an analog input on an EEPROM, and after the data collection is over, to send the data back from the EEPROM to a PC running matlab. Use an interrupt service routine to read an analog input and write the value to an external EEPROM using I2C. After reading in a fixed number of samples, perhaps 1,000 or 10,000, the program should send the data back to a matlab program via an RS-232 link. The logged data should then be plotted by matlab.

You should decrease the sample time until the ISR does not successfully complete. What is the fastest rate at which an analog input can be read and stored to the external EEPROM? Try this for an analog input configured for both 8-bit (1 byte of data stored on the EEPROM) and 10-bit (2 bytes of data stored on the EEPROM). How much data can you store on the EEPROM?

As an alternative, you can avoid the use of an ISR and simply read and store the data as fast as you can in a loop.

As a test input, use a triangle wave signal from the function generator between 1 and 4 V, and plot the data in matlab.

See Interfacing to External EEPROM, PIC RS232, and Serial communication with Matlab.


Overview

An external EEPROM is useful when trying to store data. In addition to an external EEPROM being capable of storing much more data than is available on the 18F4520 PIC, the data is stored even when power is removed and can then be collected at a later time. Storing large amounts of data over time is especially beneficial once communication can be made between the PIC and Matlab. Using the serial function in Matlab, the data can be obtained and then analyzed.


In this project, we used the PIC to log data from an analog input onto an EEPROM and then later sent the data back from the EEPROM to Matlab to plot. For our lab, we worked with a 24FC1025 EEPROM whose data sheet can be found here (http://ww1.microchip.com/downloads/en/DeviceDoc/21941B.pdf). Additionally, we established serial port connection between the PIC microcontroller and Matlab using the RS232 (http://hades.mech.northwestern.edu/wiki/index.php/PIC_RS232).

Circuit

(Images coming soon) To the right is a circuit diagram for interfacing a Microchip 24FC1025 EEPROM to the 18F4520 PIC. Below the diagram is an actual photo of the circuit layout.


[Pin descriptions necessary]

Example.jpg


In order to connect our PIC to Matlab, we use a RS232. As mentioned here (http://hades.mech.northwestern.edu/wiki/index.php/PIC_RS232), we connect the black wire to ground, the orange wire to pin 26, RC7 and the yellow wire to pin 25, RC6.

Code

This project consists of two sets of code: code that is downloaded to the PIC to collect and store data to and send data from the EEPROM , and code that is used by Matlab to collect and plot the data. Within our code, we use a delay time is 5 msec since this is the time required to write the data to the EEPROM. We also collect 1000 data points which is the maximum number of points available. [Not completely confident in the previous statment.] The EEPROM is storing 1024K bits or 128K bytes.


The PIC code is shown below and can be downloaded here.


The Matlab code is shown below and can be downloaded here.



Further Reading

http://en.wikipedia.org/wiki/EEPROM

http://hades.mech.northwestern.edu/wiki/index.php/Serial_communication_with_Matlab