Difference between revisions of "PIC32MX: SPI External RAM"
From Mech
Jump to navigationJump to search (→Code) |
(→Code) |
||
| Line 98: | Line 98: | ||
//Read 10bytes starting from 0x1010 memory location of SRAM and store it to SRAMBuf array |
//Read 10bytes starting from 0x1010 memory location of SRAM and store it to SRAMBuf array |
||
SRAMReadSeq(0x10,0x10,SRAMBufCheckSeq,10); |
SRAMReadSeq(0x10,0x10,SRAMBufCheckSeq,10); |
||
| ⚫ | |||
| ⚫ | |||
} |
} |
||
Revision as of 00:11, 16 February 2010
Original Assignment
Do not erase this section!
Your assignment is to interface to the SPI 23K256 SRAM chip.
Overview
This page will guide you how to interface the PIC32 board with the 23K256 external RAM using SPI.
Circuit
Circuit diagram showing PIC32 connected to external RAM 23K256. The circuit is an edited version of a circuit from this microchip documentation [1].
Code
1. Go to this link [2] and download "AN1277 Source Code" folder.
2. Add the PIC32 files and other requirements, instructions here [3].
3. Edit the main.c file you downloaded from step 1 to match usage for the PIC32 board. The original code is also edited make testing easier.
#include <plib.h>
#include <string.h>
#include "HardwareProfile.h"
#include "SRAMDriver.h"
// Configuration Bit settings
// SYSCLK = 80 MHz (8MHz Crystal/ FPLLIDIV * FPLLMUL / FPLLODIV)
// PBCLK = 40 MHz
// Primary Osc w/PLL (XT+,HS+,EC+PLL)
// WDT OFF
// Other options are don't care
//
#pragma config FPLLMUL = MUL_20, FPLLIDIV = DIV_2, FPLLODIV = DIV_1, FWDTEN = OFF
#pragma config POSCMOD = HS, FNOSC = PRIPLL, FPBDIV = DIV_1
int main(void)
{
unsigned char ReadVal,Cnt;
unsigned char RandomSendData;
unsigned char SRAMBufPage[SRAMPageSize];
unsigned char SRAMBufCheckPage[SRAMPageSize];
unsigned char SRAMBufSeq[10];
unsigned char SRAMBufCheckSeq[10];
// Configure the device for maximum performance but do not change the PBDIV
// Given the options, this function will change the flash wait states, RAM
// wait state and enable prefetch cache but will not change the PBDIV.
// The PBDIV value is already set via the pragma FPBDIV option above..
SYSTEMConfig(SYS_FREQ, SYS_CFG_WAIT_STATES | SYS_CFG_PCACHE);
InitSRAM();
while(1)
{
//Byte Mode
SRAMWriteStatusReg(SRAMByteMode);
//Write random byte to 0x0010 memory location of SRAM
RandomSendData = rand();
SRAMWriteByte(0x00,0x10,RandomSendData);
//Read 0x0010 memory location of SRAM
ReadVal = SRAMReadByte(0x00,0x10);
//Page Mode
SRAMWriteStatusReg(SRAMPageMode);
memset(SRAMBufPage,0,sizeof(SRAMBufPage)); //Reset SRAMBuf location to 0x00 value
memset(SRAMBufCheckPage,0,sizeof(SRAMBufCheckPage)); //Reset SRAMBuf location to 0x00 value
//Write 32bytes from SRAMBuf array to first page of SRAM
for(Cnt = 0;Cnt<32;Cnt++)
{
SRAMBufPage[Cnt] = (rand());
}
SRAMWritePage(0x00,0x20,SRAMBufPage);
//Read 32bytes from SRAMBuf array from first page of SRAM
SRAMReadPage(0x00,0x20,SRAMBufCheckPage);
//Sequential Mode
memset(SRAMBufSeq,0,sizeof(SRAMBufSeq)); //Reset SRAMBuf location to 0x00 value
memset(SRAMBufCheckSeq,0,sizeof(SRAMBufCheckSeq)); //Reset SRAMBufCheckSeq location to 0x00 value
//Write 10bytes from SRAMBuf to SRAM starting from 0x0010 memory location
for(Cnt = 0;Cnt<32;Cnt++)
{
SRAMBufSeq[Cnt] =(rand());
}
SRAMWriteStatusReg(SRAMSeqMode);
SRAMWriteSeq(0x10,0x10,SRAMBufSeq,10);
//Read 10bytes starting from 0x1010 memory location of SRAM and store it to SRAMBuf array
SRAMReadSeq(0x10,0x10,SRAMBufCheckSeq,10);
}
}