2013-08-04 13:38:53 +00:00
|
|
|
/*
|
2015-01-11 13:45:54 +00:00
|
|
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio.
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2015-01-11 13:45:54 +00:00
|
|
|
This file is part of ChibiOS.
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2015-01-11 13:45:54 +00:00
|
|
|
ChibiOS is free software; you can redistribute it and/or modify
|
2013-08-04 13:38:53 +00:00
|
|
|
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.
|
|
|
|
|
2015-01-11 13:45:54 +00:00
|
|
|
ChibiOS is distributed in the hope that it will be useful,
|
2013-08-04 13:38:53 +00:00
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file hal.h
|
|
|
|
* @brief HAL subsystem header.
|
|
|
|
*
|
|
|
|
* @addtogroup HAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAL_H_
|
|
|
|
#define _HAL_H_
|
|
|
|
|
|
|
|
#include "osal.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "halconf.h"
|
|
|
|
|
|
|
|
#include "hal_lld.h"
|
|
|
|
|
|
|
|
/* Abstract interfaces.*/
|
|
|
|
#include "hal_streams.h"
|
|
|
|
#include "hal_channels.h"
|
2014-11-27 13:48:59 +00:00
|
|
|
#include "hal_files.h"
|
2013-08-12 16:44:22 +00:00
|
|
|
#include "hal_ioblock.h"
|
|
|
|
#include "hal_mmcsd.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2013-08-05 14:08:52 +00:00
|
|
|
/* Shared headers.*/
|
|
|
|
#include "hal_queues.h"
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/* Normal drivers.*/
|
|
|
|
#include "pal.h"
|
|
|
|
#include "adc.h"
|
|
|
|
#include "can.h"
|
2014-03-09 11:55:46 +00:00
|
|
|
#include "dac.h"
|
2013-08-12 16:13:20 +00:00
|
|
|
#include "ext.h"
|
2013-08-12 16:01:07 +00:00
|
|
|
#include "gpt.h"
|
2013-08-17 15:32:41 +00:00
|
|
|
#include "i2c.h"
|
2014-02-16 09:12:08 +00:00
|
|
|
#include "i2s.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
#include "icu.h"
|
2014-07-05 16:09:29 +00:00
|
|
|
#include "mac.h"
|
|
|
|
#include "mii.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
#include "pwm.h"
|
2014-06-06 14:19:28 +00:00
|
|
|
#include "rtc.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
#include "serial.h"
|
2013-09-20 10:49:21 +00:00
|
|
|
#include "sdc.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
#include "spi.h"
|
2013-08-12 16:55:13 +00:00
|
|
|
#include "uart.h"
|
2013-08-25 09:37:34 +00:00
|
|
|
#include "usb.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2014-11-04 10:51:23 +00:00
|
|
|
/*
|
|
|
|
* The ST driver is a special case, it is only included if the OSAL is
|
|
|
|
* configured to require it.
|
|
|
|
*/
|
|
|
|
#if OSAL_ST_MODE != OSAL_ST_MODE_NONE
|
|
|
|
#include "st.h"
|
|
|
|
#endif
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/* Complex drivers.*/
|
2013-08-12 16:44:22 +00:00
|
|
|
#include "mmc_spi.h"
|
2013-08-25 09:37:34 +00:00
|
|
|
#include "serial_usb.h"
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2014-11-16 11:03:31 +00:00
|
|
|
/* Community drivers.*/
|
|
|
|
#if HAL_USE_COMMUNITY
|
|
|
|
#include "hal_community.h"
|
|
|
|
#endif
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-09-20 11:03:22 +00:00
|
|
|
/**
|
|
|
|
* @name Return codes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAL_SUCCESS false
|
|
|
|
#define HAL_FAILED true
|
|
|
|
/** @} */
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver macros. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void halInit(void);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _HAL_H_ */
|
|
|
|
|
|
|
|
/** @} */
|