[RTOS] Fixed INITIAL_SP for LPC11U68

According to the LPC11U68 datasheet, the top of SRAM0 occurs at 0x10008000, not 0x10004000.
pull/1235/head
Neil Thiessen 2015-07-10 09:01:18 -06:00
parent 6cb7294c83
commit 6a5f4abd25
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ osThreadDef_t os_thread_def_main = {(os_pthread)main, osPriorityNormal, 0, NULL}
#define INITIAL_SP (0x02009000UL)
#elif defined(TARGET_LPC11U68)
#define INITIAL_SP (0x10004000UL)
#define INITIAL_SP (0x10008000UL)
#elif defined(TARGET_STM32F411RE)
#define INITIAL_SP (0x20020000UL)