1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/efm32: remove exports

This commit is contained in:
Francisco Molina 2020-02-11 22:11:54 +01:00
parent 7cc65c9b62
commit 67ec9a298d
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
# This file provides defaults for additional EFM32-specific features. You
# should override them from the command line, or in your Makefile. Note that
# some features may not be applicable to all EFM32 boards or CPUs.
export EFM32_LEUART_ENABLED ?= 1
EFM32_LEUART_ENABLED ?= 1

View File

@ -13,15 +13,15 @@ ifeq (,$(EFM32_INFO))
endif
# Export variables to use in this build.
export EFM32_FAMILY = $(word 2, $(EFM32_INFO))
export EFM32_SERIES = $(word 3, $(EFM32_INFO))
export EFM32_ARCHITECTURE = $(word 4, $(EFM32_INFO))
EFM32_FAMILY = $(word 2, $(EFM32_INFO))
EFM32_SERIES = $(word 3, $(EFM32_INFO))
EFM32_ARCHITECTURE = $(word 4, $(EFM32_INFO))
export EFM32_FLASH_START = $(word 5, $(EFM32_INFO))
export EFM32_FLASH_SIZE = $(word 6, $(EFM32_INFO))
export EFM32_SRAM_START = $(word 7, $(EFM32_INFO))
export EFM32_SRAM_SIZE = $(word 8, $(EFM32_INFO))
EFM32_FLASH_START = $(word 5, $(EFM32_INFO))
EFM32_FLASH_SIZE = $(word 6, $(EFM32_INFO))
EFM32_SRAM_START = $(word 7, $(EFM32_INFO))
EFM32_SRAM_SIZE = $(word 8, $(EFM32_INFO))
export EFM32_CRYPTO = $(word 9, $(EFM32_INFO))
export EFM32_TRNG = $(word 10, $(EFM32_INFO))
export EFM32_RADIO = $(word 11, $(EFM32_INFO))
EFM32_CRYPTO = $(word 9, $(EFM32_INFO))
EFM32_TRNG = $(word 10, $(EFM32_INFO))
EFM32_RADIO = $(word 11, $(EFM32_INFO))