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
|
|
|
|
2011-10-08 16:56:03 +00:00
|
|
|
/**
|
|
|
|
* @brief PAL setup.
|
|
|
|
* @details Digital I/O ports static configuration as defined in @p board.h.
|
|
|
|
* This variable is used by the HAL when initializing the PAL driver.
|
|
|
|
*/
|
|
|
|
#if HAL_USE_PAL || defined(__DOXYGEN__)
|
|
|
|
const PALConfig pal_default_config =
|
|
|
|
{
|
|
|
|
#if defined(PORTA)
|
|
|
|
{VAL_PORTA, VAL_DDRA},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTB)
|
2011-10-08 16:56:03 +00:00
|
|
|
{VAL_PORTB, VAL_DDRB},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTC)
|
2011-10-08 16:56:03 +00:00
|
|
|
{VAL_PORTC, VAL_DDRC},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTD)
|
2011-10-08 16:56:03 +00:00
|
|
|
{VAL_PORTD, VAL_DDRD},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTE)
|
2011-10-08 16:56:03 +00:00
|
|
|
{VAL_PORTE, VAL_DDRE},
|
|
|
|
#endif
|
2011-10-15 07:10:47 +00:00
|
|
|
#if defined(PORTF)
|
|
|
|
{VAL_PORTF, VAL_DDRF},
|
|
|
|
#endif
|
|
|
|
#if defined(PORTG)
|
|
|
|
{VAL_PORTG, VAL_DDRG},
|
|
|
|
#endif
|
2011-10-08 16:56:03 +00:00
|
|
|
};
|
|
|
|
#endif /* HAL_USE_PAL */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Timer0 interrupt handler.
|
|
|
|
*/
|
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
|
|
|
}
|
|
|
|
|
2011-10-08 16:56:03 +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
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
}
|