summaryrefslogtreecommitdiff
path: root/include/arch/msp430fr5994lp/driver/spi_b.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/msp430fr5994lp/driver/spi_b.h')
-rw-r--r--include/arch/msp430fr5994lp/driver/spi_b.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/arch/msp430fr5994lp/driver/spi_b.h b/include/arch/msp430fr5994lp/driver/spi_b.h
deleted file mode 100644
index 4be7346..0000000
--- a/include/arch/msp430fr5994lp/driver/spi_b.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef SPI_H
-#define SPI_H
-
-class SPI {
- private:
- SPI(const SPI &copy);
-
- public:
- SPI () {}
- void setup();
- signed char xmit(
- unsigned char tx_len, unsigned char *tx_buf,
- unsigned char rx_len, unsigned char *rx_buf);
-};
-
-extern SPI spi;
-
-#endif