Fixed bug #430.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@6233 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
3363239d73
commit
da174a1aa8
|
@ -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 = 2.4.5
|
||||
PROJECT_NUMBER = 2.4.6
|
||||
|
||||
# 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
|
||||
|
|
|
@ -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 = 2.4.5
|
||||
PROJECT_NUMBER = 2.4.6
|
||||
|
||||
# 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
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
/**
|
||||
* @brief Kernel version string.
|
||||
*/
|
||||
#define CH_KERNEL_VERSION "2.4.5"
|
||||
#define CH_KERNEL_VERSION "2.4.6"
|
||||
|
||||
/**
|
||||
* @name Kernel version
|
||||
|
@ -66,7 +66,7 @@
|
|||
/**
|
||||
* @brief Kernel version patch number.
|
||||
*/
|
||||
#define CH_KERNEL_PATCH 5
|
||||
#define CH_KERNEL_PATCH 6
|
||||
/** @} */
|
||||
|
||||
/*
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -106,6 +106,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -107,6 +107,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -107,6 +107,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -107,6 +107,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ SECTIONS
|
|||
. = ALIGN(8);
|
||||
} > flash
|
||||
|
||||
. = ALIGN(4);
|
||||
_etext = .;
|
||||
_textdata = _etext;
|
||||
|
||||
|
|
|
@ -78,6 +78,9 @@
|
|||
*** Releases ***
|
||||
*****************************************************************************
|
||||
|
||||
*** 2.4.6 ***
|
||||
- FIX: Fixed possible unalignment in GCC Cortex-M scatter files (bug #430).
|
||||
|
||||
*** 2.4.5 ***
|
||||
- FIX: Fixed PAL driver errors (bug #429).
|
||||
- FIX: Fixed USB HAL driver compile error (bug #428).
|
||||
|
|
Loading…
Reference in New Issue