From 2bc224bc2fb08e9a23071ed3933e31a06564f7d0 Mon Sep 17 00:00:00 2001
From: Pavel Slama 
Date: Sun, 13 Aug 2017 15:32:11 +0200
Subject: [PATCH] target BLUEPILL_F106C8 compile fix
INITIAL_SP missing when compile, here is a quick fix
---
 targets/TARGET_STM/mbed_rtx.h | 1 +
 1 file changed, 1 insertion(+)
diff --git a/targets/TARGET_STM/mbed_rtx.h b/targets/TARGET_STM/mbed_rtx.h
index afef01b9d2f..01cf38e44a8 100644
--- a/targets/TARGET_STM/mbed_rtx.h
+++ b/targets/TARGET_STM/mbed_rtx.h
@@ -37,6 +37,7 @@
 #define INITIAL_SP              (0x20004000UL)
 
 #elif (defined(TARGET_STM32F103RB) ||\
+       defined(TARGET_STM32F103C8) ||\
        defined(TARGET_STM32L072CZ) ||\
        defined(TARGET_STM32L073RZ))
 #define INITIAL_SP              (0x20005000UL)