doxygen cleanup

ugfx_release_2.6
Joel Bodenmann 2014-05-10 18:50:15 +02:00
parent 1478fdf41e
commit 2632bb1ed5
8 changed files with 0 additions and 47 deletions

View File

@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/chibios.c
* @brief GOS ChibiOS Operating System support.
* @details Supports both, ChibiOS/RT 2.x and 3.x
*/
#include "gfx.h"
#if GFX_USE_OS_CHIBIOS
@ -168,4 +163,3 @@ gfxThreadHandle gfxThreadCreate(void *stackarea, size_t stacksz, threadpriority_
}
#endif /* GFX_USE_OS_CHIBIOS */
/** @} */

View File

@ -5,12 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/chibios.h
* @brief GOS - Operating System Support header file for ChibiOS.
* @details Supports both, ChibiOS/RT 2.x and 3.x
*/
#ifndef _GOS_CHIBIOS_H
#define _GOS_CHIBIOS_H

View File

@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/linux.c
* @brief GOS ChibiOS Operating System support.
*/
#include "gfx.h"
#if GFX_USE_OS_LINUX
@ -197,5 +193,3 @@ semcount_t gfxSemCounter(gfxSem *pSem) {
}
#endif /* GFX_USE_OS_LINUX */
/** @} */

View File

@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/linux.h
* @brief GOS - Operating System Support header file for LINUX.
*/
#ifndef _GOS_LINUX_H
#define _GOS_LINUX_H

View File

@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/osx.c
* @brief GOS ChibiOS Operating System support.
*/
#include "gfx.h"
#if GFX_USE_OS_OSX
@ -193,5 +189,3 @@ semcount_t gfxSemCounter(gfxSem *pSem) {
}
#endif /* GFX_USE_OS_OSX */
/** @} */

View File

@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/osx.h
* @brief GOS - Operating System Support header file for Mac OS-X.
*/
#ifndef _GOS_OSX_H
#define _GOS_OSX_H
@ -90,6 +85,4 @@ threadreturn_t gfxThreadWait(gfxThreadHandle thread);
#endif
#endif /* GFX_USE_OS_OSX */
#endif /* _GOS_OSX_H */

View File

@ -5,10 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/raw32.c
* @brief GOS Raw (bare metal) support.
*/
#include "gfx.h"
#if GFX_USE_OS_RAW32
@ -735,4 +731,3 @@ threadreturn_t gfxThreadWait(gfxThreadHandle th) {
}
#endif /* GFX_USE_OS_RAW32 */

View File

@ -5,11 +5,6 @@
* http://ugfx.org/license.html
*/
/**
* @file src/gos/raw32.h
* @brief GOS - Operating System Support header file for any 32 bit processor in bare-metal mode
*/
/**
* The raw32 GOS implementation supports any 32 bit processor with or without an
* underlying operating system. It uses cooperative multi-tasking. Be careful
@ -123,4 +118,3 @@ extern "C" {
#endif /* GFX_USE_OS_RAW32 */
#endif /* _GOS_RAW32_H */