aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/rcc.h
diff options
context:
space:
mode:
authorPerry Hung <iperry@alum.mit.edu>2010-04-22 02:36:01 -0400
committerPerry Hung <iperry@alum.mit.edu>2010-04-24 03:53:22 -0400
commit17e0e5edde60e9bf2aa4d52173ad7d47d6d6da75 (patch)
tree9ca6bcbea7e3183c206f16d5012a6b1797597ce1 /libmaple/rcc.h
parentcb3284fad5347fc9622a170d6e3cd870fd9e2846 (diff)
downloadlibrambutan-17e0e5edde60e9bf2aa4d52173ad7d47d6d6da75.tar.gz
librambutan-17e0e5edde60e9bf2aa4d52173ad7d47d6d6da75.zip
Initial SPI Polling implementation.
Initial commit of a polling-based SPI driver. The driver is limited to synchronous, blocking sends and a 8-bit data frame format. Tested on SPI1 and SPI2. Other peripherals are temporarily disabled, and the rx function is untested until I find a good peripheral to test everything on.
Diffstat (limited to 'libmaple/rcc.h')
-rw-r--r--libmaple/rcc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmaple/rcc.h b/libmaple/rcc.h
index 8f786ee..9973bca 100644
--- a/libmaple/rcc.h
+++ b/libmaple/rcc.h
@@ -100,6 +100,10 @@
#define RCC_APB1ENR_TIM4EN BIT(2)
#define RCC_APB1ENR_USART2EN BIT(17)
#define RCC_APB1ENR_USART3EN BIT(18)
+#define RCC_APB1ENR_SPI2EN BIT(14)
+
+#define rcc_enable_clk_spi1() __set_bits(RCC_APB2ENR, RCC_APB2ENR_SPI1EN)
+#define rcc_enable_clk_spi2() __set_bits(RCC_APB1ENR, RCC_APB1ENR_SPI2EN)
#define rcc_enable_clk_timer1() __set_bits(RCC_APB2ENR, RCC_APB2ENR_TIM1EN)
#define rcc_enable_clk_timer2() __set_bits(RCC_APB1ENR, RCC_APB1ENR_TIM2EN)