NETMF / llilum

Development Platform for MSIL and UWP apps targeting Micro Controllers. Part of the .NET Micro Framework family.
Other
159 stars 52 forks source link

Build Error with new BSP #241

Closed weixiongmei closed 7 years ago

weixiongmei commented 7 years ago

where to find the value for the

/*__STATIC_INLINE*/ void* CMSIS_STUB_SCB__get_MSP_ResetValue()
{
    //
    // Ignore first full frame
    //

if defined(TARGET_LPC1768)

    return (void*)0x10007FFC;

elif defined(TARGET_K64F)

    return (void*)0x2002FFFC;

elif defined(TARGET_STM32F411RE)

    return (void*)0x2001FFFC;

elif defined(TARGET_STM32F401RE)

    return (void*)0x20017FFC;

elif defined(TARGET_STM32L152RE)

    return (void*)0x20013FFC;

elif defined(TARGET_STM32F091RC)

    return (void*)0x20017FFC;

else

    !ERROR not supported platform

endif

}