summaryrefslogtreecommitdiff
path: root/stm/stm32fxxx_it.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-21 23:28:03 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-21 23:28:03 +0000
commit2c302563820d18be5fcfed406582ea5edaa6b39f (patch)
treea5449557639fb7d5cf462ec28bcddf4037e4cc46 /stm/stm32fxxx_it.c
parentd51cfd155c09771a6abb4e7a058522f4677fc7cb (diff)
stm: Clean up main.c; disable libgcc by default.
f2d and d2f functions from libgcc does not work correctly, most likely due to the ABI being incorrect. libgcc disabled for now.
Diffstat (limited to 'stm/stm32fxxx_it.c')
-rw-r--r--stm/stm32fxxx_it.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stm/stm32fxxx_it.c b/stm/stm32fxxx_it.c
index 0cece8854..22f83f810 100644
--- a/stm/stm32fxxx_it.c
+++ b/stm/stm32fxxx_it.c
@@ -286,6 +286,7 @@ void EXTI15_10_IRQHandler(void) {
// work out if it's A14 that had the interrupt
if (EXTI_GetITStatus(EXTI_Line14) != RESET) {
led_toggle(PYB_LED_G2);
+ /* these are needed for CC3000 support
extern void SpiIntGPIOHandler(void);
extern uint32_t exti14_enabled;
extern uint32_t exti14_missed;
@@ -296,6 +297,7 @@ void EXTI15_10_IRQHandler(void) {
} else {
exti14_missed = 1;
}
+ */
EXTI_ClearITPendingBit(EXTI_Line14);
//printf("<- EXTI14 done\n");
}