Browse Source

rename tinygecko->efm32tg everywhere

pull/47/head
chrysn 12 years ago
parent
commit
d526dd3268
  1. 2
      Makefile
  2. 2
      include/libopencm3/dispatch/nvic.h
  3. 2
      include/libopencm3/efm32/efm32tg/irq.yaml
  4. 0
      include/libopencm3/efm32/efm32tg/memorymap.h
  5. 2
      include/libopencmsis/dispatch/irqhandlers.h
  6. 2
      lib/dispatch/vector_nvic.c
  7. 0
      lib/efm32/efm32tg/EFM32TG840F32.ld
  8. 4
      lib/efm32/efm32tg/Makefile
  9. 0
      lib/efm32/efm32tg/libopencm3_efm32tg.ld

2
Makefile

@ -26,7 +26,7 @@ SHAREDIR = $(DESTDIR)/$(PREFIX)/share/libopencm3/scripts
INSTALL = install
SRCLIBDIR = $(shell pwd)/lib
TARGETS = stm32/f1 stm32/f2 stm32/f4 lpc13xx lpc17xx lpc43xx lm3s efm32/tinygecko
TARGETS = stm32/f1 stm32/f2 stm32/f4 lpc13xx lpc17xx lpc43xx lm3s efm32/efm32tg
# Be silent per default, but 'make V=1' will show all compiler calls.
ifneq ($(V),1)

2
include/libopencm3/dispatch/nvic.h

@ -6,7 +6,7 @@
# include <libopencm3/stm32/f4/nvic.h>
#elif defined(EFM32TG)
# include <libopencm3/efm32/tinygecko/nvic.h>
# include <libopencm3/efm32/efm32tg/nvic.h>
#elif defined(LPC43XX)
# include <libopencm3/lpc43xx/nvic.h>

2
include/libopencm3/efm32/tinygecko/irq.yaml → include/libopencm3/efm32/efm32tg/irq.yaml

@ -1,4 +1,4 @@
includeguard: LIBOPENCM3_EFM32_TINYGECKO_NVIC_H
includeguard: LIBOPENCM3_EFM32TG_NVIC_H
partname_humanreadable: EFM32 Tiny Gecko series
partname_doxygen: EFM32TG
# The names and sequence are taken from d0034_efm32tg_reference_manual.pdf table 4.1.

0
include/libopencm3/efm32/tinygecko/memorymap.h → include/libopencm3/efm32/efm32tg/memorymap.h

2
include/libopencmsis/dispatch/irqhandlers.h

@ -6,7 +6,7 @@
# include <libopencmsis/stm32/f4/irqhandlers.h>
#elif defined(EFM32TG)
# include <libopencmsis/efm32/tinygecko/irqhandlers.h>
# include <libopencmsis/efm32/efm32tg/irqhandlers.h>
#elif defined(LPC43XX)
# include <libopencmsis/lpc43xx/irqhandlers.h>

2
lib/dispatch/vector_nvic.c

@ -6,7 +6,7 @@
# include "../stm32/f4/vector_nvic.c"
#elif defined(EFM32TG)
# include "../efm32/tinygecko/vector_nvic.c"
# include "../efm32/efm32tg/vector_nvic.c"
#elif defined(LPC43XX)
# include "../lpc43xx/vector_nvic.c"

0
lib/efm32/tinygecko/EFM32TG840F32.ld → lib/efm32/efm32tg/EFM32TG840F32.ld

4
lib/efm32/tinygecko/Makefile → lib/efm32/efm32tg/Makefile

@ -18,8 +18,8 @@
## along with this library. If not, see <http://www.gnu.org/licenses/>.
##
LIBNAME = libopencm3_efm32tinygecko
FAMILY = TINYGECKO
LIBNAME = libopencm3_efm32tg
FAMILY = EFM32TG
PREFIX ?= arm-none-eabi
#PREFIX ?= arm-elf

0
lib/efm32/tinygecko/libopencm3_efm32tinygecko.ld → lib/efm32/efm32tg/libopencm3_efm32tg.ld

Loading…
Cancel
Save