//----- SETUP SPI 1 -----
//Used for: Flash memory IC
w_temp = SPI1BUF;
SPI1STAT = 0;
SPI1CON1 = 0x0320; //SPI in master mode
//Data is valid on the rising edge of the clock (Transmit occurs on transition from active to idle clock state)
//Clock low in idle bus state
SPI1CON1bits.PPRE1 = 1; //Prescallers 4:1 1:1 = 10MHz (max possible from this device)
SPI1CON1bits.PPRE0 = 0;
SPI1CON1bits.SPRE2 = 1;
SPI1CON1bits.SPRE1 = 1;
SPI1CON1bits.SPRE0 = 1;
SPI1CON2 = 0;
SPI1STATbits.SPIEN = 1; //Enable the port
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *