Skip to content

EFM32: make mbed_rtx.h depend of families instead of targets #6991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions targets/TARGET_Silicon_Labs/mbed_rtx.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@
#include <stdint.h>
#include "clocking.h"

#if defined(TARGET_EFM32GG_STK3700)
#if defined(TARGET_EFM32GG)

#ifndef INITIAL_SP
#define INITIAL_SP (0x20020000UL)
#endif

#elif defined(TARGET_EFM32HG_STK3400)
#elif defined(TARGET_EFM32HG)

#ifndef INITIAL_SP
#define INITIAL_SP (0x20002000UL)
#endif

#elif defined(TARGET_EFM32LG_STK3600)
#elif defined(TARGET_EFM32LG)

#ifndef INITIAL_SP
#define INITIAL_SP (0x20008000UL)
#endif

#elif defined(TARGET_EFM32PG_STK3401)
#elif defined(TARGET_EFM32PG)

#ifndef INITIAL_SP
#define INITIAL_SP (0x20008000UL)
#endif

#elif defined(TARGET_EFM32WG_STK3800)
#elif defined(TARGET_EFM32WG)

#ifndef INITIAL_SP
#define INITIAL_SP (0x20008000UL)
Expand Down