2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-11-29 08:50:13 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup AVR_DRIVERS AVR Drivers
|
2010-10-26 17:39:29 +00:00
|
|
|
* @details This section describes all the supported drivers on the AVR
|
|
|
|
* platform and the implementation details of the single drivers.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-06-18 11:30:57 +00:00
|
|
|
* @ingroup platforms
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
|
2009-12-08 14:42:32 +00:00
|
|
|
/**
|
2010-10-26 17:39:29 +00:00
|
|
|
* @defgroup AVR_HAL AVR Initialization Support
|
|
|
|
* @details On the AVR platform the HAL driver is a stub and does not perform
|
|
|
|
* any platform-specific initialization, it still performs the
|
|
|
|
* initialization of the other drivers.
|
2009-12-08 14:42:32 +00:00
|
|
|
*
|
|
|
|
* @ingroup AVR_DRIVERS
|
|
|
|
*/
|
|
|
|
|
2011-09-25 15:18:18 +00:00
|
|
|
/**
|
|
|
|
* @defgroup AVR_PAL AVR PAL Support
|
|
|
|
* @details The AVR PAL driver uses the GPIO peripherals.
|
|
|
|
*
|
|
|
|
* @section avr_pal_1 Supported HW resources
|
|
|
|
* - GPIOA.
|
|
|
|
* - GPIOB.
|
|
|
|
* - GPIOC.
|
|
|
|
* - GPIOD.
|
|
|
|
* - GPIOE.
|
|
|
|
* .
|
|
|
|
* @ingroup AVR_DRIVERS
|
|
|
|
*/
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2011-03-02 18:56:02 +00:00
|
|
|
* @defgroup AVR_SERIAL AVR Serial Support
|
2010-10-26 17:39:29 +00:00
|
|
|
* @details The AVR Serial driver uses the USART peripherals in a
|
|
|
|
* buffered, interrupt driven, implementation.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-10-26 17:39:29 +00:00
|
|
|
* @section avr_serial_1 Supported HW resources
|
|
|
|
* The serial driver can support any of the following hardware resources:
|
|
|
|
* - USART0.
|
|
|
|
* - USART1.
|
|
|
|
* .
|
|
|
|
* @section avr_serial_2 AVR Serial driver implementation features
|
|
|
|
* - Each USART can be independently enabled and programmed.
|
|
|
|
* - Fully interrupt driven.
|
|
|
|
* .
|
2009-11-29 08:50:13 +00:00
|
|
|
* @ingroup AVR_DRIVERS
|
|
|
|
*/
|