2009-08-16 13:07:24 +00:00
|
|
|
/*
|
2015-01-11 13:45:54 +00:00
|
|
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio.
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2015-01-11 13:45:54 +00:00
|
|
|
This file is part of ChibiOS.
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2015-01-11 13:45:54 +00:00
|
|
|
ChibiOS is free software; you can redistribute it and/or modify
|
2009-08-16 13:07:24 +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,
|
2009-08-16 13:07:24 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-06 10:55:53 +00:00
|
|
|
* @file ch.h
|
|
|
|
* @brief ChibiOS/RT main include file.
|
|
|
|
* @details This header includes all the required kernel headers so it is the
|
|
|
|
* only kernel header you usually want to include in your application.
|
|
|
|
*
|
2009-08-30 06:59:43 +00:00
|
|
|
* @addtogroup kernel_info
|
2010-03-16 19:36:21 +00:00
|
|
|
* @details Kernel related info.
|
2009-08-16 13:07:24 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CH_H_
|
|
|
|
#define _CH_H_
|
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief ChibiOS/RT identification macro.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
#define _CHIBIOS_RT_
|
|
|
|
|
|
|
|
/**
|
2015-04-06 09:29:12 +00:00
|
|
|
* @brief Stable release flag.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2015-04-06 09:29:12 +00:00
|
|
|
#define CH_KERNEL_STABLE 0
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2011-08-22 17:18:52 +00:00
|
|
|
/**
|
2015-04-06 09:29:12 +00:00
|
|
|
* @name ChibiOS/RT version identification
|
2011-08-22 17:18:52 +00:00
|
|
|
* @{
|
|
|
|
*/
|
2015-04-06 09:29:12 +00:00
|
|
|
/**
|
|
|
|
* @brief Kernel version string.
|
|
|
|
*/
|
2015-10-15 15:00:48 +00:00
|
|
|
#define CH_KERNEL_VERSION "3.1.0"
|
2015-04-06 09:29:12 +00:00
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Kernel version major number.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2013-07-22 14:19:09 +00:00
|
|
|
#define CH_KERNEL_MAJOR 3
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Kernel version minor number.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2015-10-15 15:00:48 +00:00
|
|
|
#define CH_KERNEL_MINOR 1
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Kernel version patch number.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2015-10-15 15:00:48 +00:00
|
|
|
#define CH_KERNEL_PATCH 0
|
2011-08-22 17:18:52 +00:00
|
|
|
/** @} */
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2013-11-14 11:01:51 +00:00
|
|
|
/* Core headers.*/
|
2010-01-17 14:08:48 +00:00
|
|
|
#include "chtypes.h"
|
2013-09-03 08:48:20 +00:00
|
|
|
#include "chconf.h"
|
2014-11-24 13:10:30 +00:00
|
|
|
#include "chlicense.h"
|
2014-11-05 13:22:26 +00:00
|
|
|
#include "chsystypes.h"
|
2013-07-29 14:31:13 +00:00
|
|
|
#include "chcore.h"
|
2013-09-03 08:48:20 +00:00
|
|
|
#include "chdebug.h"
|
2013-07-29 13:36:19 +00:00
|
|
|
#include "chtm.h"
|
2013-07-29 13:28:35 +00:00
|
|
|
#include "chstats.h"
|
2013-11-14 10:22:19 +00:00
|
|
|
#include "chschd.h"
|
2013-11-12 11:05:57 +00:00
|
|
|
#include "chsys.h"
|
2013-07-28 12:15:57 +00:00
|
|
|
#include "chvt.h"
|
2013-08-16 17:41:56 +00:00
|
|
|
#include "chthreads.h"
|
2013-11-14 11:01:51 +00:00
|
|
|
|
|
|
|
/* Optional subsystems headers.*/
|
2013-06-16 16:48:40 +00:00
|
|
|
#include "chregistry.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chsem.h"
|
2010-10-05 14:05:25 +00:00
|
|
|
#include "chbsem.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chmtx.h"
|
|
|
|
#include "chcond.h"
|
|
|
|
#include "chevents.h"
|
|
|
|
#include "chmsg.h"
|
|
|
|
#include "chmboxes.h"
|
|
|
|
#include "chmemcore.h"
|
|
|
|
#include "chheap.h"
|
|
|
|
#include "chmempools.h"
|
2010-11-12 18:47:41 +00:00
|
|
|
#include "chdynamic.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chqueues.h"
|
|
|
|
#include "chstreams.h"
|
2010-08-20 07:40:01 +00:00
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
#endif /* _CH_H_ */
|
|
|
|
|
|
|
|
/** @} */
|