diff options
author | Perry Hung <iperry@alum.mit.edu> | 2010-04-22 02:36:01 -0400 |
---|---|---|
committer | Perry Hung <iperry@alum.mit.edu> | 2010-04-24 03:53:22 -0400 |
commit | 17e0e5edde60e9bf2aa4d52173ad7d47d6d6da75 (patch) | |
tree | 9ca6bcbea7e3183c206f16d5012a6b1797597ce1 /core | |
parent | cb3284fad5347fc9622a170d6e3cd870fd9e2846 (diff) | |
download | librambutan-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 'core')
-rw-r--r-- | core/wiring.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/wiring.c b/core/wiring.c index 803b571..290cca1 100644 --- a/core/wiring.c +++ b/core/wiring.c @@ -40,11 +40,11 @@ void init(void) { nvic_init(); systick_init(); gpio_init(); - adc_init(); - timer_init(1, 1); - timer_init(2, 1); - timer_init(3, 1); - timer_init(4, 1); +// adc_init(); +// timer_init(1, 1); +// timer_init(2, 1); +// timer_init(3, 1); +// timer_init(4, 1); } void nvic_init(void) { |