Fixed Bug #858
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10307 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
2e5a3b195d
commit
b6fa231be6
|
@ -57,7 +57,7 @@ int main(void) {
|
|||
/*
|
||||
* Creates the blinker thread.
|
||||
*/
|
||||
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
||||
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO + 1, Thread1, NULL);
|
||||
|
||||
/*
|
||||
* Normal main() thread activity, in this demo it does nothing except
|
||||
|
|
|
@ -89,6 +89,8 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** Next ***
|
||||
- VAR: Fixed priority issue in STM32 Nucleo-64 F401RE demo(bug #858)(backported
|
||||
to 17.6.1).
|
||||
- VAR: Fixed STM32L053 Discovery demo which is unaligned to standard demos (bug
|
||||
#857)(backported to 17.6.1).
|
||||
- HAL: Fixed unaligned STM32F0xx mcuconf.h files (bug #855)(backported
|
||||
|
|
Loading…
Reference in New Issue