2009-08-16 13:07:24 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-08-16 13:07:24 +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 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_
|
|
|
|
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Kernel version string.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2011-06-08 15:32:34 +00:00
|
|
|
#define CH_KERNEL_VERSION "2.3.3unstable"
|
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
|
|
|
*/
|
2010-06-12 05:56:13 +00:00
|
|
|
#define CH_KERNEL_MAJOR 2
|
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
|
|
|
*/
|
2011-01-30 09:58:07 +00:00
|
|
|
#define CH_KERNEL_MINOR 3
|
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
|
|
|
*/
|
2011-06-08 15:32:34 +00:00
|
|
|
#define CH_KERNEL_PATCH 3
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Common values.
|
|
|
|
*/
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE (!FALSE)
|
|
|
|
#endif
|
|
|
|
|
2010-01-17 14:08:48 +00:00
|
|
|
#include "chconf.h"
|
|
|
|
#include "chtypes.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chlists.h"
|
2010-01-17 14:08:48 +00:00
|
|
|
#include "chcore.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chsys.h"
|
|
|
|
#include "chvt.h"
|
|
|
|
#include "chschd.h"
|
|
|
|
#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"
|
|
|
|
#include "chthreads.h"
|
2010-11-12 18:47:41 +00:00
|
|
|
#include "chdynamic.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chregistry.h"
|
2010-02-27 09:00:47 +00:00
|
|
|
#include "chinline.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chqueues.h"
|
|
|
|
#include "chstreams.h"
|
|
|
|
#include "chioch.h"
|
2010-08-20 07:40:01 +00:00
|
|
|
#include "chfiles.h"
|
2010-02-27 08:40:21 +00:00
|
|
|
#include "chdebug.h"
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2010-08-20 07:40:01 +00:00
|
|
|
#if !defined(__DOXYGEN__)
|
2011-05-17 14:49:51 +00:00
|
|
|
extern WORKING_AREA(_idle_thread_wa, PORT_IDLE_THREAD_STACK_SIZE);
|
2010-08-20 07:40:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void _idle_thread(void *p);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
#endif /* _CH_H_ */
|
|
|
|
|
|
|
|
/** @} */
|