NIL documentation build works.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7565 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
787956f72e
commit
ef61ab2e4a
|
@ -361,7 +361,7 @@ EXTRACT_PRIVATE = NO
|
|||
# If the EXTRACT_STATIC tag is set to YES all static members of a file
|
||||
# will be included in the documentation.
|
||||
|
||||
EXTRACT_STATIC = NO
|
||||
EXTRACT_STATIC = YES
|
||||
|
||||
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
|
||||
# defined locally in source files will be included in the documentation.
|
||||
|
@ -644,6 +644,7 @@ WARN_LOGFILE =
|
|||
# with spaces.
|
||||
|
||||
INPUT = ./src \
|
||||
../../os/nil/dox \
|
||||
../../os/nil/src \
|
||||
../../os/nil/include \
|
||||
../../os/nil/templates
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
* - Easily portable.
|
||||
* - Preemptive scheduling.
|
||||
* - Each thread has its own priority level.
|
||||
* - Offers tasks, task queues, semaphores, event flags, timeouts.
|
||||
* - Offers tasks, time, semaphores, event flags, timeouts.
|
||||
* - Fully static.
|
||||
* - Minimal system requirements: about 700 bytes ROM with all options enabled.
|
||||
* - Almost totally written in C with little ASM code required for ports.
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
||||
2011,2012,2013,2014 Giovanni Di Sirio.
|
||||
|
||||
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/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup NIL NIL Kernel
|
||||
* @details The kernel is the portable part of ChibiOS/NIL, this section
|
||||
* documents the various kernel subsystems.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup NIL_CONFIG Configuration
|
||||
* @ingroup NIL
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup NIL_TYPES Kernel Types
|
||||
* @ingroup NIL
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup NIL_KERNEL API
|
||||
* @ingroup NIL
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup NIL_CORE Port Layer
|
||||
* @ingroup NIL
|
||||
*/
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
* @details This header includes all the required kernel headers so it is the
|
||||
* only header you usually need to include in your application.
|
||||
*
|
||||
* @addtogroup NIL
|
||||
* @addtogroup NIL_KERNEL
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -21,8 +21,7 @@
|
|||
* @file nil.c
|
||||
* @brief Nil RTOS main source file.
|
||||
*
|
||||
* @defgroup NIL API
|
||||
* @details Nil RTOS services.
|
||||
* @addtogroup NIL_KERNEL
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* @details A copy of this file must be placed in each project directory, it
|
||||
* contains the application specific kernel settings.
|
||||
*
|
||||
* @addtogroup config
|
||||
* @addtogroup NIL_CONFIG
|
||||
* @details Kernel related settings and hooks.
|
||||
* @{
|
||||
*/
|
||||
|
|
|
@ -244,8 +244,8 @@ static inline syssts_t port_get_irq_status(void) {
|
|||
* @param[in] sts the interrupt status word
|
||||
*
|
||||
* @return The interrupt status.
|
||||
* @retvel false the word specified a disabled interrupts status.
|
||||
* @retvel true the word specified an enabled interrupts status.
|
||||
* @retval false the word specified a disabled interrupts status.
|
||||
* @retval true the word specified an enabled interrupts status.
|
||||
*/
|
||||
static inline bool port_irq_enabled(syssts_t sts) {
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* @file templates/niltypes.h
|
||||
* @brief Port system types.
|
||||
*
|
||||
* @addtogroup NIL_CORE
|
||||
* @addtogroup NIL_TYPES
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue