X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Finclude%2Fspi.h;h=dfbb28ab4a20b117a590ae2c69b11bd5633c74b7;hp=02e548ae5ed3f2f72da71417776ca9ccd2a0a7e9;hb=5fb0341d348e101b30794945a6c91546e25e8e7b;hpb=ba4e9392ba615ed84d47576fe973057f89bb8998 diff --git a/firmware/include/spi.h b/firmware/include/spi.h index 02e548a..dfbb28a 100644 --- a/firmware/include/spi.h +++ b/firmware/include/spi.h @@ -3,6 +3,12 @@ \brief Definitions for the SPI application. */ +#ifndef SPI_H +#define SPI_H + +#include "app.h" + +#define SPI 0x01 //Pins and I/O //#define SS BIT0 @@ -16,6 +22,11 @@ #define CLRCLK P5OUT&=~SCK #define READMISO (P5IN&MISO?1:0) +#define SETTST P4OUT|=TST +#define CLRTST P4OUT&=~TST +#define SETRST P2OUT|=RST +#define CLRRST P2OUT&=~RST + //! Set up the pins for SPI mode. void spisetup(); @@ -43,3 +54,7 @@ unsigned char spitrans8(unsigned char byte); unsigned char spiflash_status(); //! Erase a sector. void spiflash_erasesector(unsigned long adr); + +extern app_t const spi_app; + +#endif