Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.

Fork of mbed-rtos by ST

Files at this revision

API Documentation at this revision

Comitter:
ryuhs74
Date:
Thu Aug 06 12:27:02 2015 +0000
Parent:
72:83895f30f8f2
Commit message:
RYU HoSeong

Changed in this revision

rtx/TARGET_CORTEX_M/RTX_CM_lib.h Show annotated file Show diff for this revision Revisions of this file
rtx/TARGET_CORTEX_M/RTX_Conf_CM.c Show annotated file Show diff for this revision Revisions of this file
diff -r 83895f30f8f2 -r b95c8c619055 rtx/TARGET_CORTEX_M/RTX_CM_lib.h
--- a/rtx/TARGET_CORTEX_M/RTX_CM_lib.h	Fri Apr 10 07:16:43 2015 +0100
+++ b/rtx/TARGET_CORTEX_M/RTX_CM_lib.h	Thu Aug 06 12:27:02 2015 +0000
@@ -304,6 +304,9 @@
 #elif defined(TARGET_MAX32610)
 #define INITIAL_SP            (0x20008000UL)
 
+#elif defined(TARGET_WIZwiki_W7500) //ryuhs74@20150713 - Add For Use Thread
+#define INITIAL_SP            (0x20004000UL)
+
 #else
 #error "no target defined"
 
diff -r 83895f30f8f2 -r b95c8c619055 rtx/TARGET_CORTEX_M/RTX_Conf_CM.c
--- a/rtx/TARGET_CORTEX_M/RTX_Conf_CM.c	Fri Apr 10 07:16:43 2015 +0100
+++ b/rtx/TARGET_CORTEX_M/RTX_Conf_CM.c	Thu Aug 06 12:27:02 2015 +0000
@@ -58,6 +58,10 @@
    || defined(TARGET_STM32F103RB) || defined(TARGET_LPC824) || defined(TARGET_STM32F302R8) || defined(TARGET_STM32F334R8) || defined(TARGET_STM32F334C8) \
    || defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8) || defined(TARGET_STM32F072RB) || defined(TARGET_STM32F091RC)
 #    define OS_TASKCNT         6
+
+#  elif defined(TARGET_WIZwiki_W7500) //ryuhs74@20150713 - Add For Use Thread
+#    define OS_TASKCNT         6
+
 #  else
 #    error "no target defined"
 #  endif
@@ -75,6 +79,11 @@
 #      define OS_SCHEDULERSTKSIZE    128
 #  elif defined(TARGET_STM32F334R8) || defined(TARGET_STM32F303RE) ||  defined(TARGET_STM32F334C8) || defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8)
 #      define OS_SCHEDULERSTKSIZE    112
+
+#  elif defined(TARGET_WIZwiki_W7500) //ryuhs74@20150713 - Add For Use Thread
+#      define OS_SCHEDULERSTKSIZE    64
+
+
 #  else
 #    error "no target defined"
 #  endif
@@ -171,6 +180,9 @@
 #elif defined(TARGET_MAX32610)
 #    define OS_CLOCK       24000000
 
+#elif defined(TARGET_WIZwiki_W7500) //ryuhs74@20150713 - Add for Use Thread
+#    define OS_CLOCK       2000000
+
 #  else
 #    error "no target defined"
 #  endif