From ca013cf8e4235a3024361009f21eb1a2d5677acf Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 17 Jan 2010 14:08:48 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1531 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- docs/Doxyfile | 2 +- os/kernel/include/ch.h | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index 92251a1b8..24c925847 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.3.8 +PROJECT_NUMBER = 1.5.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/os/kernel/include/ch.h b/os/kernel/include/ch.h index ecac6f3f7..4e35936ae 100644 --- a/os/kernel/include/ch.h +++ b/os/kernel/include/ch.h @@ -35,7 +35,7 @@ /** * Kernel version string. */ -#define CH_KERNEL_VERSION "1.3.8unstable" +#define CH_KERNEL_VERSION "1.5.0unstable" /** * Kernel version major number. @@ -45,12 +45,12 @@ /** * Kernel version minor number. */ -#define CH_KERNEL_MINOR 3 +#define CH_KERNEL_MINOR 5 /** * Kernel version patch number. */ -#define CH_KERNEL_PATCH 8 +#define CH_KERNEL_PATCH 0 /* * Common values. @@ -62,10 +62,10 @@ #define TRUE (!FALSE) #endif -#include -#include +#include "chconf.h" +#include "chtypes.h" #include "lists.h" -#include +#include "chcore.h" #include "sys.h" #include "vt.h" #include "scheduler.h"