Skip to content

Commit d9fcbc7

Browse files
committed
EFM32: make mbed_rtx.h depend of families instead of targets
1 parent eb9435b commit d9fcbc7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

targets/TARGET_Silicon_Labs/mbed_rtx.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,31 @@
2020
#include <stdint.h>
2121
#include "clocking.h"
2222

23-
#if defined(TARGET_EFM32GG_STK3700)
23+
#if defined(TARGET_EFM32GG)
2424

2525
#ifndef INITIAL_SP
2626
#define INITIAL_SP (0x20020000UL)
2727
#endif
2828

29-
#elif defined(TARGET_EFM32HG_STK3400)
29+
#elif defined(TARGET_EFM32HG)
3030

3131
#ifndef INITIAL_SP
3232
#define INITIAL_SP (0x20002000UL)
3333
#endif
3434

35-
#elif defined(TARGET_EFM32LG_STK3600)
35+
#elif defined(TARGET_EFM32LG)
3636

3737
#ifndef INITIAL_SP
3838
#define INITIAL_SP (0x20008000UL)
3939
#endif
4040

41-
#elif defined(TARGET_EFM32PG_STK3401)
41+
#elif defined(TARGET_EFM32PG)
4242

4343
#ifndef INITIAL_SP
4444
#define INITIAL_SP (0x20008000UL)
4545
#endif
4646

47-
#elif defined(TARGET_EFM32WG_STK3800)
47+
#elif defined(TARGET_EFM32WG)
4848

4949
#ifndef INITIAL_SP
5050
#define INITIAL_SP (0x20008000UL)

0 commit comments

Comments
 (0)