diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-29 07:16:20 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-29 07:16:20 +0000 |
commit | 1d4ff3695d8599687b456cdce156c5127251ae1b (patch) | |
tree | ee5153f193ec02c113c4e2dc3e95e0eb5051957d | |
parent | de5b16909a7d9cdedc5194cf74de9ec2e59b4d60 (diff) | |
download | lufa-1d4ff3695d8599687b456cdce156c5127251ae1b.tar.gz lufa-1d4ff3695d8599687b456cdce156c5127251ae1b.tar.bz2 lufa-1d4ff3695d8599687b456cdce156c5127251ae1b.zip |
Oops - remove duplicated SPI driver init mask.
-rw-r--r-- | LUFA/Drivers/Peripheral/SPI.h | 3 | ||||
-rw-r--r-- | LUFA/ManPages/LUFAPoweredProjects.txt | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/LUFA/Drivers/Peripheral/SPI.h b/LUFA/Drivers/Peripheral/SPI.h index 06a8f1880..5bd7df448 100644 --- a/LUFA/Drivers/Peripheral/SPI.h +++ b/LUFA/Drivers/Peripheral/SPI.h @@ -106,9 +106,6 @@ /** SPI data order mask for SPI_Init(). Indicates that data should be shifted out MSB first. */ #define SPI_ORDER_LSB_FIRST (1 << DORD) - /** SPI data sample mode mask for SPI_Init(). Indicates that the data should be sampled on the trailing edge. */ - #define SPI_SAMPLE_TRAILING (1 << CPHA) - /** SPI mode mask for SPI_Init(). Indicates that the SPI interface should be initialized into slave mode. */ #define SPI_MODE_SLAVE (0 << MSTR) diff --git a/LUFA/ManPages/LUFAPoweredProjects.txt b/LUFA/ManPages/LUFAPoweredProjects.txt index bf702042f..bc3935302 100644 --- a/LUFA/ManPages/LUFAPoweredProjects.txt +++ b/LUFA/ManPages/LUFAPoweredProjects.txt @@ -20,7 +20,6 @@ * * - AT90USB162 Breadboard PCB (Russian): http://microsin.ru/content/view/685/44/ * - Benito #7, a no-frills USB board: http://www.dorkbotpdx.org/wiki/benito - * - Bumble-B, yet another AT90USB162 development board: http://fletchtronics.net/bumble-b * - JM-DB-U2, an ATMEGA32U2 development board: http://www.mattairtech.com/index.php/development-boards/atmega32u2-development-board.html * - Micropendous, an open design/source set of AVR USB development boards: http://micropendous.org/ * - Nanduino, a do-it-yourself AT90USB162 board: http://www.makestuff.eu/wordpress/?page_id=569 |