mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #1074 from dbestm/master
[NUCLEO_F3xxRx][RTOS]enhance source and testpull/1080/head
commit
7c1fba2cda
|
@ -160,7 +160,7 @@
|
|||
# define OS_CLOCK 168000000
|
||||
|
||||
#elif defined(TARGET_STM32F302R8)
|
||||
# define OS_CLOCK 64000000
|
||||
# define OS_CLOCK 72000000
|
||||
|
||||
#elif defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8)
|
||||
# define OS_CLOCK 32000000
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
*/
|
||||
#if defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8)
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE/4
|
||||
#elif defined(TARGET_STM32F334R8) && defined(TOOLCHAIN_IAR)
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE/4
|
||||
#else
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE
|
||||
#endif
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
*/
|
||||
#if defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8)
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE/4
|
||||
#elif defined(TARGET_STM32F334R8) && (defined(TOOLCHAIN_GCC) || defined(TOOLCHAIN_IAR))
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE/4
|
||||
#else
|
||||
#define STACK_SIZE DEFAULT_STACK_SIZE
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue