www.pudn.com > 3310-s64.rar > 3310.c


/************************************************************/ 
/*		 3310 Code for   AT91SAM7S64						*/ 
/*				By   pasyong								*/ 
/*				www.okarm.com								*/ 
/*				Base IAR 4.30A							*/ 
/************************************************************/ 
#include "ioat91sam7s64.h" 
#include "english_6x8_pixel.h " 
#define LCD_DC      ((unsigned int) 1 << 28) 
#define LCD_CE       ((unsigned int) 1 << 29) 
#define LCD_RST      ((unsigned int) 1 << 30) 
/*----------------------------------------------------------------------- 
PORT_INIT函数 
-----------------------------------------------------------------------*/ 
void PORT_init() 
{ 
  *AT91C_PIOA_PER|=(LCD_DC|LCD_CE|LCD_RST); 
  *AT91C_PIOA_OER|=(LCD_DC|LCD_CE|LCD_RST); 
} 
void SPI_init() 
{ 
 
  *AT91C_PMC_PCER=1<