diff options
author | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-17 02:57:17 +0000 |
---|---|---|
committer | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-17 02:57:17 +0000 |
commit | 2826bbb424f15d61c5ef917dcfd5444e7e607b56 (patch) | |
tree | 4903428bc2df15208ece7b4f19ffaa120f04bb1c /src/lib | |
parent | d468ccac449968009cbbd2eabd8cfa7d7f3a35e5 (diff) | |
download | librambutan-2826bbb424f15d61c5ef917dcfd5444e7e607b56.tar.gz librambutan-2826bbb424f15d61c5ef917dcfd5444e7e607b56.zip |
Enabled 39 GPIOs for digitalWrite(), fixed timer/usart collisions on PWM/USART pins
git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@120 749a229e-a60e-11de-b98f-4500b42dc123
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/timers.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/timers.c b/src/lib/timers.c index 1e95f41..773ae36 100644 --- a/src/lib/timers.c +++ b/src/lib/timers.c @@ -150,6 +150,7 @@ void timers_disable(void) { for (i = 0; i < 4; i++) { timer = timers[i]; timer->CR1 = 0; + timer->CCER = 0; } } |