git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1500 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2010-01-03 12:42:46 +00:00
parent 1a9cc2599e
commit de95f94fbe
4 changed files with 5 additions and 5 deletions

View File

@ -262,7 +262,7 @@ int main(int argc, char **argv) {
/* /*
* Normal main() thread activity, in this demo it does nothing except * Normal main() thread activity, in this demo it does nothing except
* sleeping in a loop and listed for events. * sleeping in a loop and listen for events.
*/ */
evtInit(&evt, MS2ST(500)); /* Initializes an event timer object. */ evtInit(&evt, MS2ST(500)); /* Initializes an event timer object. */
evtStart(&evt); /* Starts the event timer. */ evtStart(&evt); /* Starts the event timer. */

View File

@ -211,7 +211,7 @@ int main(int argc, char **argv) {
/* /*
* Normal main() thread activity, in this demo it does nothing except * Normal main() thread activity, in this demo it does nothing except
* sleeping in a loop and listed for events. * sleeping in a loop and listen for events.
*/ */
evtInit(&evt, MS2ST(500)); /* Initializes an event timer object. */ evtInit(&evt, MS2ST(500)); /* Initializes an event timer object. */
evtStart(&evt); /* Starts the event timer. */ evtStart(&evt); /* Starts the event timer. */

View File

@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 1.3.7 PROJECT_NUMBER = 1.3.8
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.

View File

@ -35,7 +35,7 @@
/** /**
* Kernel version string. * Kernel version string.
*/ */
#define CH_KERNEL_VERSION "1.3.7unstable" #define CH_KERNEL_VERSION "1.3.8unstable"
/** /**
* Kernel version major number. * Kernel version major number.
@ -50,7 +50,7 @@
/** /**
* Kernel version patch number. * Kernel version patch number.
*/ */
#define CH_KERNEL_PATCH 7 #define CH_KERNEL_PATCH 8
/* /*
* Common values. * Common values.