diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-12 23:07:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-11-12 23:07:49 +0000 |
commit | 688c495b28d6307050f370717c295f2f889e3b3c (patch) | |
tree | 2034ea9abf4edf78c4499e46272b2c63fed4f302 /boards/ST_STM8L_DISCOVERY | |
parent | 9e53be4d3ccbd10f89bd14352c68d9c1b1dae80e (diff) | |
download | ChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.tar.gz ChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.tar.bz2 ChibiOS-688c495b28d6307050f370717c295f2f889e3b3c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2355 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards/ST_STM8L_DISCOVERY')
-rw-r--r-- | boards/ST_STM8L_DISCOVERY/board.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/boards/ST_STM8L_DISCOVERY/board.c b/boards/ST_STM8L_DISCOVERY/board.c index b4c619a38..dd4a27472 100644 --- a/boards/ST_STM8L_DISCOVERY/board.c +++ b/boards/ST_STM8L_DISCOVERY/board.c @@ -27,22 +27,6 @@ #define TIM2_ARR ((TIM2_CLOCK / CH_FREQUENCY) - 1)
/*
- * TIM2 interrupt handler.
- */
-CH_IRQ_HANDLER(20) {
-
- CH_IRQ_PROLOGUE();
-
- chSysLockFromIsr();
- chSysTimerHandlerI();
- chSysUnlockFromIsr();
-
- TIM2->SR1 = 0;
-
- CH_IRQ_EPILOGUE();
-}
-
-/*
* Board initialization code.
*/
void hwinit(void) {
|