From f06fcac502619bc7f6155aa75947dc4340efccd5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sat, 12 Jun 2010 22:54:11 -0400 Subject: good quality vga leaf logo; usb+systick disabled refactored timers and added interrupt behavior. see notes and comments... also includes a crude vga hack that doesn't use timers. --- wirish/comm/HardwareSPI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wirish/comm/HardwareSPI.cpp') diff --git a/wirish/comm/HardwareSPI.cpp b/wirish/comm/HardwareSPI.cpp index 3dfe10a..eadcdd7 100644 --- a/wirish/comm/HardwareSPI.cpp +++ b/wirish/comm/HardwareSPI.cpp @@ -95,8 +95,8 @@ void HardwareSPI::begin(SPIFrequency freq, uint32 endianness, uint32 mode) { } /* Turn off PWM on shared pins */ - timers_disable_channel(3, 2); - timers_disable_channel(3, 1); + timer_set_mode(3, 2, TIMER_DISABLED); + timer_set_mode(3, 1, TIMER_DISABLED); } endianness = (endianness == LSBFIRST) ? SPI_LSBFIRST : SPI_MSBFIRST; -- cgit v1.2.3