Updated version numbers.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7982 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2015-05-14 13:27:17 +00:00
parent 1ad8c87054
commit c185060244
11 changed files with 11 additions and 11 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.0.0p4 PROJECT_NUMBER = 3.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/HAL
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.0.0p4 PROJECT_NUMBER = 3.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/NIL
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 1.0.0p4 PROJECT_NUMBER = 1.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/NIL
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 1.0.0p4 PROJECT_NUMBER = 1.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/RT
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.0.0p4 PROJECT_NUMBER = 3.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -38,7 +38,7 @@ PROJECT_NAME = ChibiOS/RT
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = 3.0.0p4 PROJECT_NUMBER = 3.0.0p5
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a

View File

@ -101,7 +101,7 @@
/** /**
* @brief HAL version string. * @brief HAL version string.
*/ */
#define HAL_VERSION "3.0.0p4" #define HAL_VERSION "3.0.0p5"
/** /**
* @brief HAL version major number. * @brief HAL version major number.

View File

@ -348,9 +348,7 @@ void sdc_lld_init(void) {
sdcObjectInit(&SDCD1); sdcObjectInit(&SDCD1);
SDCD1.thread = NULL; SDCD1.thread = NULL;
SDCD1.dma = STM32_DMA_STREAM(STM32_SDC_SDIO_DMA_STREAM); SDCD1.dma = STM32_DMA_STREAM(STM32_SDC_SDIO_DMA_STREAM);
#if CH_DBG_ENABLE_ASSERTS
SDCD1.sdio = SDIO; SDCD1.sdio = SDIO;
#endif
} }
/** /**

View File

@ -61,7 +61,7 @@ typedef struct nil_thread thread_t;
/** /**
* @brief Kernel version string. * @brief Kernel version string.
*/ */
#define CH_KERNEL_VERSION "1.0.0p4" #define CH_KERNEL_VERSION "1.0.0p5"
/** /**
* @brief Kernel version major number. * @brief Kernel version major number.

View File

@ -48,7 +48,7 @@
/** /**
* @brief Kernel version string. * @brief Kernel version string.
*/ */
#define CH_KERNEL_VERSION "3.0.0p4" #define CH_KERNEL_VERSION "3.0.0p5"
/** /**
* @brief Kernel version major number. * @brief Kernel version major number.

View File

@ -76,6 +76,8 @@
*** 3.0.0p5 *** *** 3.0.0p5 ***
- HAL: Added DAC support to all STM32 sub-platforms, added another demo for - HAL: Added DAC support to all STM32 sub-platforms, added another demo for
the STM32F3xx. the STM32F3xx.
- HAL: Fixed STM32 SDC LLD driver initialization with Asserts disabled
(bug #594).
*** 3.0.0p4 *** *** 3.0.0p4 ***
- BLD: New "smart build" mode added to makefiles, now only used files are - BLD: New "smart build" mode added to makefiles, now only used files are