Fixed STM32 demo stack size.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@993 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
4f34ddf7eb
commit
c0bfa2bcd6
|
@ -20,8 +20,8 @@
|
||||||
/*
|
/*
|
||||||
* ST32F103 memory setup.
|
* ST32F103 memory setup.
|
||||||
*/
|
*/
|
||||||
__main_stack_size__ = 0x0400;
|
__main_stack_size__ = 0x0200;
|
||||||
__process_stack_size__ = 0x0100;
|
__process_stack_size__ = 0x0400;
|
||||||
__stacks_total_size__ = __main_stack_size__ + __process_stack_size__;
|
__stacks_total_size__ = __main_stack_size__ + __process_stack_size__;
|
||||||
|
|
||||||
MEMORY
|
MEMORY
|
||||||
|
|
|
@ -65,6 +65,8 @@ GNU-Linux-GCC - ChibiOS/RT simulator for x86 Linux systems, it is
|
||||||
|
|
||||||
*** 1.3.1 ***
|
*** 1.3.1 ***
|
||||||
- Documentation fixes.
|
- Documentation fixes.
|
||||||
|
- Changed the STM32 demo stack sizes, it was incorrectly adjusted in version
|
||||||
|
1.3.0 but it did not create problems (not a bug).
|
||||||
|
|
||||||
*** 1.3.0 ***
|
*** 1.3.0 ***
|
||||||
- FIX: Fixed regression in MinGW demo (bug 2745153)(backported in stable
|
- FIX: Fixed regression in MinGW demo (bug 2745153)(backported in stable
|
||||||
|
|
Loading…
Reference in New Issue