ChibiOS-Contrib/os/hal/include/hal_community.h

79 lines
2.7 KiB
C
Raw Normal View History

2014-11-16 02:51:14 -08:00
/*
2015-05-02 13:00:00 -07:00
ChibiOS/RT - Copyright (C) 2014 Uladzimir Pylinsky aka barthess
2014-11-16 02:51:14 -08:00
2015-05-02 13:00:00 -07:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
2014-11-16 02:51:14 -08:00
2015-05-02 13:00:00 -07:00
http://www.apache.org/licenses/LICENSE-2.0
2014-11-16 02:51:14 -08:00
2015-05-02 13:00:00 -07:00
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2014-11-16 02:51:14 -08:00
*/
/**
* @file hal_community.h
* @brief HAL subsystem header (community part).
*
* @addtogroup HAL_COMMUNITY
* @{
*/
#ifndef _HAL_COMMUNITY_H_
#define _HAL_COMMUNITY_H_
/* Abstract interfaces.*/
/* Shared headers.*/
/* Normal drivers.*/
#include "nand.h"
#include "eicu.h"
2016-02-08 14:45:59 -08:00
#include "rng.h"
2016-02-15 14:34:25 -08:00
#include "usbh.h"
2016-02-15 15:51:22 -08:00
#include "timcap.h"
2014-11-16 02:51:14 -08:00
/* Complex drivers.*/
2014-12-06 09:16:37 -08:00
#include "onewire.h"
#include "crc.h"
2016-02-15 15:22:40 -08:00
#include "eeprom.h"
2014-11-16 02:51:14 -08:00
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/
/*===========================================================================*/
/* 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 halCommunityInit(void);
#ifdef __cplusplus
}
#endif
#endif /* _HAL_COMMUNITY_H_ */
/** @} */