Added in globals.h selector SPI Speed 4/8Mhz
This commit is contained in:
@@ -50,6 +50,10 @@ FATFS Fatfs; //File system object for each logical drive. >= 2
|
||||
|
||||
//#define IP_WORK
|
||||
|
||||
//SPI CLOCK 4 or 8Mhz
|
||||
#define SPI_4_MHZ
|
||||
//#define SPI_8_MHZ
|
||||
|
||||
extern unsigned long millis(void);
|
||||
extern int freeRam (void);
|
||||
extern char uart0_receive(void);
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
#include <avr/io.h>
|
||||
#include "diskio.h"
|
||||
|
||||
#include "globals.h"
|
||||
|
||||
/* Port controls (Platform dependent) */
|
||||
|
||||
@@ -113,17 +113,24 @@ void power_on (void)
|
||||
DDRB |= _BV(MOSI) | _BV(SCK) | _BV(CSN);
|
||||
PORTB |= _BV(MOSI) | _BV(SCK);
|
||||
|
||||
|
||||
#if defined(SPI_8_MHZ)
|
||||
/* Enables SPI, selects "master", clock rate FCK / 2, and SPI mode 0 */
|
||||
// SPI 8Mhz
|
||||
SPCR = _BV(SPE) | _BV(MSTR);
|
||||
SPSR = _BV(SPI2X);
|
||||
|
||||
SPSR = _BV(SPI2X); //FCK / 2 - 8Mhz
|
||||
#elif defined (SPI_4_MHZ)
|
||||
/* Enables SPI, selects "master", clock rate FCK / 4, and SPI mode 0 */
|
||||
// SPI 4Mhz
|
||||
/*
|
||||
SPCR = _BV(SPE) | _BV(MSTR);
|
||||
SPSR = 0x0;
|
||||
*/
|
||||
SPSR = 0x0; //FCK / 4 - 4Mhz
|
||||
#else
|
||||
/* Enables SPI, selects "master", clock rate FCK / 4, and SPI mode 0 */
|
||||
// SPI 4Mhz
|
||||
SPCR = _BV(SPE) | _BV(MSTR);
|
||||
SPSR = 0x0; //FCK / 4 - 4Mhz
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
static
|
||||
|
||||
@@ -30,6 +30,8 @@
|
||||
|
||||
#include <avr/io.h>
|
||||
#include "spi.h"
|
||||
#include "globals.h"
|
||||
|
||||
//#include "contiki-conf.h"
|
||||
|
||||
/*
|
||||
@@ -77,8 +79,13 @@ spi_init(void)
|
||||
|
||||
/* Enables SPI, selects "master", clock rate FCK / 4 - 4Mhz, and SPI mode 0 */
|
||||
SPCR = _BV(SPE) | _BV(MSTR);
|
||||
//SPSR = 0x0; //FCK / 4 - 4Mhz
|
||||
#if defined(SPI_8_MHZ)
|
||||
SPSR = _BV(SPI2X); //FCK / 2 - 8Mhz
|
||||
#elif defined (SPI_4_MHZ)
|
||||
SPSR = 0x0; //FCK / 4 - 4Mhz
|
||||
#else
|
||||
SPSR = 0x0; //FCK / 4 - 4Mhz
|
||||
#endif
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user