git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10307 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2017-07-08 07:56:17 +00:00
parent 2e5a3b195d
commit b6fa231be6
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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