2009-11-29 10:37:31 +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 10:37:31 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @file hal.h
|
|
|
|
* @brief HAL subsystem header.
|
|
|
|
*
|
2009-11-29 10:37:31 +00:00
|
|
|
* @addtogroup HAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAL_H_
|
|
|
|
#define _HAL_H_
|
|
|
|
|
|
|
|
#include "board.h"
|
2010-05-21 07:13:25 +00:00
|
|
|
#include "halconf.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
|
|
|
|
#include "hal_lld.h"
|
|
|
|
|
|
|
|
#include "pal.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "can.h"
|
2011-02-28 18:44:46 +00:00
|
|
|
#include "gpt.h"
|
2010-08-17 08:50:00 +00:00
|
|
|
#include "i2c.h"
|
2011-03-29 14:51:08 +00:00
|
|
|
#include "icu.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
#include "mac.h"
|
2009-12-08 07:42:49 +00:00
|
|
|
#include "pwm.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
#include "serial.h"
|
2011-04-25 12:41:47 +00:00
|
|
|
#include "sdc.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
#include "spi.h"
|
2010-07-26 09:01:47 +00:00
|
|
|
#include "uart.h"
|
2011-01-30 19:18:26 +00:00
|
|
|
#include "usb.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
#include "mmc_spi.h"
|
2011-01-30 19:18:26 +00:00
|
|
|
#include "serial_usb.h"
|
2009-11-29 10:37:31 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void halInit(void);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _HAL_H_ */
|
|
|
|
|
|
|
|
/** @} */
|