aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Hermann2010-12-30 03:45:00 +0100
committerUwe Hermann2010-12-30 03:45:00 +0100
commit48b514d3efcf4c51d7100c8bd98a52240c25053c (patch)
tree22a95b4918ebc442100101be29a25062bea12569
parent079dc05c73b2d14502ca251d382b5439f5701e1b (diff)
s/libopenstm32/libopencm3/ is some Makefiles.
-rw-r--r--Makefile7
-rw-r--r--examples/lpc13xx/Makefile2
-rw-r--r--examples/lpc13xx/Makefile.include3
-rw-r--r--examples/lpc13xx/lpc-p1343/Makefile2
-rw-r--r--examples/lpc13xx/lpc-p1343/miniblink/Makefile2
-rw-r--r--examples/stm32/Makefile2
-rw-r--r--examples/stm32/Makefile.include3
-rw-r--r--examples/stm32/lisa-m/Makefile2
-rw-r--r--examples/stm32/lisa-m/usb_dfu/Makefile2
-rw-r--r--examples/stm32/lisa-m/usb_hid/Makefile2
-rw-r--r--examples/stm32/mb525/Makefile2
-rw-r--r--examples/stm32/mb525/fancyblink/Makefile2
-rw-r--r--examples/stm32/mb525/pwmleds/Makefile2
-rw-r--r--examples/stm32/obldc/Makefile2
-rw-r--r--examples/stm32/obldc/can/Makefile2
-rw-r--r--examples/stm32/obldc/led/Makefile2
-rw-r--r--examples/stm32/obldc/systick/Makefile2
-rw-r--r--examples/stm32/obldc/usart/Makefile2
-rw-r--r--examples/stm32/obldc/usart_irq/Makefile2
-rw-r--r--examples/stm32/other/Makefile2
-rw-r--r--examples/stm32/other/adc_temperature_sensor/Makefile2
-rw-r--r--examples/stm32/other/dma_mem2mem/Makefile2
-rw-r--r--examples/stm32/other/dogm128/Makefile2
-rw-r--r--examples/stm32/other/i2c_stts75_sensor/Makefile2
-rw-r--r--examples/stm32/other/rtc/Makefile2
-rw-r--r--examples/stm32/other/systick/Makefile2
-rw-r--r--examples/stm32/other/timer_interrupt/Makefile2
-rw-r--r--examples/stm32/other/usb_cdcacm/Makefile2
-rw-r--r--examples/stm32/other/usb_dfu/Makefile2
-rw-r--r--examples/stm32/other/usb_hid/Makefile2
-rw-r--r--examples/stm32/stm32-h103/Makefile2
-rw-r--r--examples/stm32/stm32-h103/fancyblink/Makefile2
-rw-r--r--examples/stm32/stm32-h103/miniblink/Makefile2
-rw-r--r--examples/stm32/stm32-h103/spi/Makefile2
-rw-r--r--examples/stm32/stm32-h103/usart/Makefile2
-rw-r--r--examples/stm32/stm32-h103/usb_cdcacm/Makefile2
-rw-r--r--examples/stm32/stm32-h103/usb_dfu/Makefile2
-rw-r--r--examples/stm32/stm32-h103/usb_hid/Makefile2
-rw-r--r--examples/stm32/stm32-h103/usb_iap/Makefile2
-rw-r--r--lib/lpc13xx/Makefile2
-rw-r--r--lib/stm32/Makefile2
41 files changed, 45 insertions, 44 deletions
diff --git a/Makefile b/Makefile
index f909705..734e315 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
@@ -49,11 +49,10 @@ examples: lib
install: build
@printf " INSTALL headers\n"
- $(Q)$(INSTALL) -d $(INCDIR)/libopenstm32
+ $(Q)$(INSTALL) -d $(INCDIR)/stm32
$(Q)$(INSTALL) -d $(INCDIR)/usb
$(Q)$(INSTALL) -d $(LIBDIR)
- $(Q)$(INSTALL) -m 0644 include/libopenstm32.h $(INCDIR)
- $(Q)$(INSTALL) -m 0644 include/libopenstm32/*.h $(INCDIR)/libopenstm32
+ $(Q)$(INSTALL) -m 0644 include/stm32/*.h $(INCDIR)/libopencm3
$(Q)$(INSTALL) -m 0644 include/usb/*.h $(INCDIR)/usb
@printf " INSTALL lib\n"
$(Q)$(INSTALL) -m 0644 lib/*.a $(LIBDIR)
diff --git a/examples/lpc13xx/Makefile b/examples/lpc13xx/Makefile
index 0e9bdad..486b4ba 100644
--- a/examples/lpc13xx/Makefile
+++ b/examples/lpc13xx/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>
##
diff --git a/examples/lpc13xx/Makefile.include b/examples/lpc13xx/Makefile.include
index c6ac67c..ed2b51e 100644
--- a/examples/lpc13xx/Makefile.include
+++ b/examples/lpc13xx/Makefile.include
@@ -1,4 +1,5 @@
-## This file is part of the libopenstm32 project.
+##
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
## Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>
diff --git a/examples/lpc13xx/lpc-p1343/Makefile b/examples/lpc13xx/lpc-p1343/Makefile
index 36c1994..e1745ac 100644
--- a/examples/lpc13xx/lpc-p1343/Makefile
+++ b/examples/lpc13xx/lpc-p1343/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/lpc13xx/lpc-p1343/miniblink/Makefile b/examples/lpc13xx/lpc-p1343/miniblink/Makefile
index 6f4ffcc..110e69e 100644
--- a/examples/lpc13xx/lpc-p1343/miniblink/Makefile
+++ b/examples/lpc13xx/lpc-p1343/miniblink/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/Makefile b/examples/stm32/Makefile
index 30e2505..bea0ef0 100644
--- a/examples/stm32/Makefile
+++ b/examples/stm32/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>
##
diff --git a/examples/stm32/Makefile.include b/examples/stm32/Makefile.include
index 431f6a6..37bfcf2 100644
--- a/examples/stm32/Makefile.include
+++ b/examples/stm32/Makefile.include
@@ -1,4 +1,5 @@
-## This file is part of the libopenstm32 project.
+##
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
## Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>
diff --git a/examples/stm32/lisa-m/Makefile b/examples/stm32/lisa-m/Makefile
index e8065ee..37b6837 100644
--- a/examples/stm32/lisa-m/Makefile
+++ b/examples/stm32/lisa-m/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/lisa-m/usb_dfu/Makefile b/examples/stm32/lisa-m/usb_dfu/Makefile
index 183b7c8..48e2d6b 100644
--- a/examples/stm32/lisa-m/usb_dfu/Makefile
+++ b/examples/stm32/lisa-m/usb_dfu/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/lisa-m/usb_hid/Makefile b/examples/stm32/lisa-m/usb_hid/Makefile
index 7967467..d831e9e 100644
--- a/examples/stm32/lisa-m/usb_hid/Makefile
+++ b/examples/stm32/lisa-m/usb_hid/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/mb525/Makefile b/examples/stm32/mb525/Makefile
index 6653a8c..e21474e 100644
--- a/examples/stm32/mb525/Makefile
+++ b/examples/stm32/mb525/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/mb525/fancyblink/Makefile b/examples/stm32/mb525/fancyblink/Makefile
index 09aff6f..1baec4d 100644
--- a/examples/stm32/mb525/fancyblink/Makefile
+++ b/examples/stm32/mb525/fancyblink/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/mb525/pwmleds/Makefile b/examples/stm32/mb525/pwmleds/Makefile
index a6f9f4e..8ae74d6 100644
--- a/examples/stm32/mb525/pwmleds/Makefile
+++ b/examples/stm32/mb525/pwmleds/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/obldc/Makefile b/examples/stm32/obldc/Makefile
index 8014fce..60dba05 100644
--- a/examples/stm32/obldc/Makefile
+++ b/examples/stm32/obldc/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>
##
diff --git a/examples/stm32/obldc/can/Makefile b/examples/stm32/obldc/can/Makefile
index 4d9fd57..20a4b90 100644
--- a/examples/stm32/obldc/can/Makefile
+++ b/examples/stm32/obldc/can/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/obldc/led/Makefile b/examples/stm32/obldc/led/Makefile
index 665cd45..8e1618a 100644
--- a/examples/stm32/obldc/led/Makefile
+++ b/examples/stm32/obldc/led/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/obldc/systick/Makefile b/examples/stm32/obldc/systick/Makefile
index f08d085..91b5cb5 100644
--- a/examples/stm32/obldc/systick/Makefile
+++ b/examples/stm32/obldc/systick/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/obldc/usart/Makefile b/examples/stm32/obldc/usart/Makefile
index 75050cd..2c1e1b1 100644
--- a/examples/stm32/obldc/usart/Makefile
+++ b/examples/stm32/obldc/usart/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/obldc/usart_irq/Makefile b/examples/stm32/obldc/usart_irq/Makefile
index eba2bb5..2ab46a0 100644
--- a/examples/stm32/obldc/usart_irq/Makefile
+++ b/examples/stm32/obldc/usart_irq/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/Makefile b/examples/stm32/other/Makefile
index b65725d..a09dbb6 100644
--- a/examples/stm32/other/Makefile
+++ b/examples/stm32/other/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/adc_temperature_sensor/Makefile b/examples/stm32/other/adc_temperature_sensor/Makefile
index c5020db..f3f65c4 100644
--- a/examples/stm32/other/adc_temperature_sensor/Makefile
+++ b/examples/stm32/other/adc_temperature_sensor/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/dma_mem2mem/Makefile b/examples/stm32/other/dma_mem2mem/Makefile
index ea78213..c43650d 100644
--- a/examples/stm32/other/dma_mem2mem/Makefile
+++ b/examples/stm32/other/dma_mem2mem/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/dogm128/Makefile b/examples/stm32/other/dogm128/Makefile
index 74ec0e5..97a012e 100644
--- a/examples/stm32/other/dogm128/Makefile
+++ b/examples/stm32/other/dogm128/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/i2c_stts75_sensor/Makefile b/examples/stm32/other/i2c_stts75_sensor/Makefile
index 32ee066..d0f6ddf 100644
--- a/examples/stm32/other/i2c_stts75_sensor/Makefile
+++ b/examples/stm32/other/i2c_stts75_sensor/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/rtc/Makefile b/examples/stm32/other/rtc/Makefile
index d74946f..1efa7ac 100644
--- a/examples/stm32/other/rtc/Makefile
+++ b/examples/stm32/other/rtc/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/systick/Makefile b/examples/stm32/other/systick/Makefile
index f08d085..91b5cb5 100644
--- a/examples/stm32/other/systick/Makefile
+++ b/examples/stm32/other/systick/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/timer_interrupt/Makefile b/examples/stm32/other/timer_interrupt/Makefile
index f6721e9..86aced4 100644
--- a/examples/stm32/other/timer_interrupt/Makefile
+++ b/examples/stm32/other/timer_interrupt/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/usb_cdcacm/Makefile b/examples/stm32/other/usb_cdcacm/Makefile
index ab55ba2..38179e3 100644
--- a/examples/stm32/other/usb_cdcacm/Makefile
+++ b/examples/stm32/other/usb_cdcacm/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/usb_dfu/Makefile b/examples/stm32/other/usb_dfu/Makefile
index 183b7c8..48e2d6b 100644
--- a/examples/stm32/other/usb_dfu/Makefile
+++ b/examples/stm32/other/usb_dfu/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/other/usb_hid/Makefile b/examples/stm32/other/usb_hid/Makefile
index 7967467..d831e9e 100644
--- a/examples/stm32/other/usb_hid/Makefile
+++ b/examples/stm32/other/usb_hid/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/Makefile b/examples/stm32/stm32-h103/Makefile
index bd3a2d8..8d39ba9 100644
--- a/examples/stm32/stm32-h103/Makefile
+++ b/examples/stm32/stm32-h103/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/fancyblink/Makefile b/examples/stm32/stm32-h103/fancyblink/Makefile
index 09aff6f..1baec4d 100644
--- a/examples/stm32/stm32-h103/fancyblink/Makefile
+++ b/examples/stm32/stm32-h103/fancyblink/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/miniblink/Makefile b/examples/stm32/stm32-h103/miniblink/Makefile
index cbbded6..24a478b 100644
--- a/examples/stm32/stm32-h103/miniblink/Makefile
+++ b/examples/stm32/stm32-h103/miniblink/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/spi/Makefile b/examples/stm32/stm32-h103/spi/Makefile
index a63e92d..7d3cb72 100644
--- a/examples/stm32/stm32-h103/spi/Makefile
+++ b/examples/stm32/stm32-h103/spi/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/usart/Makefile b/examples/stm32/stm32-h103/usart/Makefile
index 75050cd..2c1e1b1 100644
--- a/examples/stm32/stm32-h103/usart/Makefile
+++ b/examples/stm32/stm32-h103/usart/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/usb_cdcacm/Makefile b/examples/stm32/stm32-h103/usb_cdcacm/Makefile
index ab55ba2..38179e3 100644
--- a/examples/stm32/stm32-h103/usb_cdcacm/Makefile
+++ b/examples/stm32/stm32-h103/usb_cdcacm/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/usb_dfu/Makefile b/examples/stm32/stm32-h103/usb_dfu/Makefile
index 183b7c8..48e2d6b 100644
--- a/examples/stm32/stm32-h103/usb_dfu/Makefile
+++ b/examples/stm32/stm32-h103/usb_dfu/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/usb_hid/Makefile b/examples/stm32/stm32-h103/usb_hid/Makefile
index 7967467..d831e9e 100644
--- a/examples/stm32/stm32-h103/usb_hid/Makefile
+++ b/examples/stm32/stm32-h103/usb_hid/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/examples/stm32/stm32-h103/usb_iap/Makefile b/examples/stm32/stm32-h103/usb_iap/Makefile
index 9c93f91..0b51782 100644
--- a/examples/stm32/stm32-h103/usb_iap/Makefile
+++ b/examples/stm32/stm32-h103/usb_iap/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/lib/lpc13xx/Makefile b/lib/lpc13xx/Makefile
index ad44d15..37889e6 100644
--- a/lib/lpc13xx/Makefile
+++ b/lib/lpc13xx/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##
diff --git a/lib/stm32/Makefile b/lib/stm32/Makefile
index d718ef0..4c7ac4e 100644
--- a/lib/stm32/Makefile
+++ b/lib/stm32/Makefile
@@ -1,5 +1,5 @@
##
-## This file is part of the libopenstm32 project.
+## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
##