2007-10-04 17:39:44 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2007-10-04 17:39:44 +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"
|
2007-10-25 15:36:55 +00:00
|
|
|
|
2011-10-10 18:08:37 +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-10 18:08:37 +00:00
|
|
|
{VAL_PORTB, VAL_DDRB},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTC)
|
2011-10-10 18:08:37 +00:00
|
|
|
{VAL_PORTC, VAL_DDRC},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTD)
|
2011-10-10 18:08:37 +00:00
|
|
|
{VAL_PORTD, VAL_DDRD},
|
|
|
|
#endif
|
2011-10-15 06:37:38 +00:00
|
|
|
#if defined(PORTE)
|
2011-10-10 18:08:37 +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-10 18:08:37 +00:00
|
|
|
};
|
|
|
|
#endif /* HAL_USE_PAL */
|
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_HANDLER(TIMER0_COMP_vect) {
|
2008-03-06 11:38:11 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_PROLOGUE();
|
2008-03-06 11:38:11 +00:00
|
|
|
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysLockFromIsr();
|
2008-03-06 11:38:11 +00:00
|
|
|
chSysTimerHandlerI();
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysUnlockFromIsr();
|
2008-03-06 11:38:11 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_EPILOGUE();
|
2008-03-06 11:38:11 +00:00
|
|
|
}
|
2007-10-25 15:36:55 +00:00
|
|
|
|
|
|
|
/*
|
2010-12-19 10:39:21 +00:00
|
|
|
* Board-specific initialization code.
|
2007-10-25 15:36:55 +00:00
|
|
|
*/
|
2010-12-19 10:39:21 +00:00
|
|
|
void boardInit(void) {
|
2007-10-23 18:43:39 +00:00
|
|
|
|
2007-10-25 15:36:55 +00:00
|
|
|
/*
|
|
|
|
* External interrupts setup, all disabled initially.
|
|
|
|
*/
|
2007-10-26 15:08:54 +00:00
|
|
|
EICRA = 0x00;
|
|
|
|
EICRB = 0x00;
|
|
|
|
EIMSK = 0x00;
|
2007-10-23 18:43:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Enables Idle mode for SLEEP instruction.
|
|
|
|
*/
|
2008-03-06 11:38:11 +00:00
|
|
|
SMCR = (1 << SE);
|
2007-10-26 15:08:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Timer 0 setup.
|
|
|
|
*/
|
2009-12-08 14:42:32 +00:00
|
|
|
TCCR0A = (1 << WGM01) | (0 << WGM00) | /* CTC mode. */
|
|
|
|
(0 << COM0A1) | (0 << COM0A0) | /* OC0A disabled. */
|
|
|
|
(0 << CS02) | (1 << CS01) | (1 << CS00); /* CLK/64 clock. */
|
2007-10-26 15:08:54 +00:00
|
|
|
OCR0A = F_CPU / 64 / CH_FREQUENCY - 1;
|
2009-12-08 14:42:32 +00:00
|
|
|
TCNT0 = 0; /* Reset counter. */
|
|
|
|
TIFR0 = (1 << OCF0A); /* Reset pending. */
|
|
|
|
TIMSK0 = (1 << OCIE0A); /* IRQ on compare. */
|
2007-10-04 17:39:44 +00:00
|
|
|
}
|