2008-02-27 15:36:56 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-08 14:42:32 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
2008-02-27 15:36:56 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_HANDLER(TIMER0_COMP_vect) {
|
2008-02-27 15:36:56 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_PROLOGUE();
|
2008-02-27 15:36:56 +00:00
|
|
|
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysLockFromIsr();
|
2008-02-27 15:36:56 +00:00
|
|
|
chSysTimerHandlerI();
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysUnlockFromIsr();
|
2008-02-27 15:36:56 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_EPILOGUE();
|
2008-02-27 15:36:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-12-19 10:39:21 +00:00
|
|
|
* Board-specific initialization code.
|
2008-02-27 15:36:56 +00:00
|
|
|
*/
|
2010-12-19 10:39:21 +00:00
|
|
|
void boardInit(void) {
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* I/O ports setup.
|
|
|
|
*/
|
|
|
|
DDRA = VAL_DDRA;
|
|
|
|
PORTA = VAL_PORTA;
|
|
|
|
DDRB = VAL_DDRB;
|
|
|
|
PORTB = VAL_PORTB;
|
|
|
|
DDRC = VAL_DDRC;
|
|
|
|
PORTC = VAL_PORTC;
|
|
|
|
DDRD = VAL_DDRD;
|
|
|
|
PORTD = VAL_PORTD;
|
|
|
|
DDRE = VAL_DDRE;
|
|
|
|
PORTE = VAL_PORTE;
|
|
|
|
DDRF = VAL_DDRF;
|
|
|
|
PORTF = VAL_PORTF;
|
|
|
|
DDRG = VAL_DDRG;
|
|
|
|
PORTG = VAL_PORTG;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* External interrupts setup, all disabled initially.
|
|
|
|
*/
|
|
|
|
EICRA = 0x00;
|
|
|
|
EICRB = 0x00;
|
|
|
|
EIMSK = 0x00;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enables Idle mode for SLEEP instruction.
|
|
|
|
*/
|
|
|
|
MCUCR = (1 << SE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Timer 0 setup.
|
|
|
|
*/
|
2009-12-08 14:42:32 +00:00
|
|
|
TCCR0 = (1 << WGM01) | (0 << WGM00) | /* CTC mode. */
|
|
|
|
(0 << COM01) | (0 << COM00) | /* OC0A disabled. */
|
|
|
|
(1 << CS02) | (0 << CS01) | (0 << CS00); /* CLK/64 clock. */
|
2008-02-27 15:36:56 +00:00
|
|
|
OCR0 = F_CPU / 64 / CH_FREQUENCY - 1;
|
2009-12-08 14:42:32 +00:00
|
|
|
TCNT0 = 0; /* Reset counter. */
|
|
|
|
TIFR = (1 << OCF0); /* Reset pending. */
|
|
|
|
TIMSK = (1 << OCIE0); /* IRQ on compare. */
|
2008-02-27 15:36:56 +00:00
|
|
|
}
|