aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorUwe Hermann2010-12-30 13:19:25 +0100
committerUwe Hermann2010-12-30 13:19:25 +0100
commit18790a2454d2d59946b018ad5f1e33abbc17a65c (patch)
tree96bd01f69c8a0c0e09455c83faa0b94d21d67de4 /lib
parent0995f73f72b57095dde05e280af3dfaaee81215e (diff)
More renames for libopenstm32 -> libopencm3.
Diffstat (limited to 'lib')
-rw-r--r--lib/lpc13xx/gpio.c2
-rw-r--r--lib/lpc13xx/lpc13xx.ld2
-rw-r--r--lib/stm32/adc.c2
-rw-r--r--lib/stm32/can.c2
-rw-r--r--lib/stm32/dma.c2
-rw-r--r--lib/stm32/ethernet.c2
-rw-r--r--lib/stm32/exti.c2
-rw-r--r--lib/stm32/flash.c2
-rw-r--r--lib/stm32/gpio.c2
-rw-r--r--lib/stm32/i2c.c2
-rw-r--r--lib/stm32/nvic.c2
-rw-r--r--lib/stm32/rcc.c2
-rw-r--r--lib/stm32/rtc.c2
-rw-r--r--lib/stm32/scb.c2
-rw-r--r--lib/stm32/spi.c2
-rw-r--r--lib/stm32/stm32.ld2
-rw-r--r--lib/stm32/systick.c2
-rw-r--r--lib/stm32/timer.c2
-rw-r--r--lib/stm32/usart.c2
-rw-r--r--lib/stm32/vector.c2
-rw-r--r--lib/usb/usb.c2
-rw-r--r--lib/usb/usb_control.c2
-rw-r--r--lib/usb/usb_f103.c2
-rw-r--r--lib/usb/usb_private.h2
-rw-r--r--lib/usb/usb_standard.c2
25 files changed, 25 insertions, 25 deletions
diff --git a/lib/lpc13xx/gpio.c b/lib/lpc13xx/gpio.c
index 2454da5..5fe4ea7 100644
--- a/lib/lpc13xx/gpio.c
+++ b/lib/lpc13xx/gpio.c
@@ -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/lib/lpc13xx/lpc13xx.ld b/lib/lpc13xx/lpc13xx.ld
index e9cd3b7..40f7683 100644
--- a/lib/lpc13xx/lpc13xx.ld
+++ b/lib/lpc13xx/lpc13xx.ld
@@ -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/adc.c b/lib/stm32/adc.c
index 0867014..fa32b25 100644
--- a/lib/stm32/adc.c
+++ b/lib/stm32/adc.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2009 Edward Cheeseman <evbuilder@users.sourceforge.net>
*
diff --git a/lib/stm32/can.c b/lib/stm32/can.c
index 879ece8..73f102f 100644
--- a/lib/stm32/can.c
+++ b/lib/stm32/can.c
@@ -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/lib/stm32/dma.c b/lib/stm32/dma.c
index 5181590..84a10c7 100644
--- a/lib/stm32/dma.c
+++ b/lib/stm32/dma.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
*
diff --git a/lib/stm32/ethernet.c b/lib/stm32/ethernet.c
index 1df4141..980b941 100644
--- a/lib/stm32/ethernet.c
+++ b/lib/stm32/ethernet.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/stm32/exti.c b/lib/stm32/exti.c
index 7bbdec9..4961eab 100644
--- a/lib/stm32/exti.c
+++ b/lib/stm32/exti.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Mark Butler <mbutler@physics.otago.ac.nz>
*
diff --git a/lib/stm32/flash.c b/lib/stm32/flash.c
index 42cd752..b623fc7 100644
--- a/lib/stm32/flash.c
+++ b/lib/stm32/flash.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
* Copyright (C) 2010 Mark Butler <mbutler@physics.otago.ac.nz>
diff --git a/lib/stm32/gpio.c b/lib/stm32/gpio.c
index 2fe9a96..4811b54 100644
--- a/lib/stm32/gpio.c
+++ b/lib/stm32/gpio.c
@@ -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/i2c.c b/lib/stm32/i2c.c
index 7cbe045..e16b824 100644
--- a/lib/stm32/i2c.c
+++ b/lib/stm32/i2c.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
*
diff --git a/lib/stm32/nvic.c b/lib/stm32/nvic.c
index 62935d1..c9dcf3c 100644
--- a/lib/stm32/nvic.c
+++ b/lib/stm32/nvic.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
*
diff --git a/lib/stm32/rcc.c b/lib/stm32/rcc.c
index 87a144c..eddc667 100644
--- a/lib/stm32/rcc.c
+++ b/lib/stm32/rcc.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2009 Federico Ruiz-Ugalde <memeruiz at gmail dot com>
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
diff --git a/lib/stm32/rtc.c b/lib/stm32/rtc.c
index ca12d6a..1396559 100644
--- a/lib/stm32/rtc.c
+++ b/lib/stm32/rtc.c
@@ -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>
* Copyright (C) 2010 Lord James <lordjames@y7mail.com>
diff --git a/lib/stm32/scb.c b/lib/stm32/scb.c
index 2dd2185..cd95bca 100644
--- a/lib/stm32/scb.c
+++ b/lib/stm32/scb.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/stm32/spi.c b/lib/stm32/spi.c
index 8c23b53..918617a 100644
--- a/lib/stm32/spi.c
+++ b/lib/stm32/spi.c
@@ -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/stm32.ld b/lib/stm32/stm32.ld
index 75b7103..92c8382 100644
--- a/lib/stm32/stm32.ld
+++ b/lib/stm32/stm32.ld
@@ -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/systick.c b/lib/stm32/systick.c
index 9a8ccac..998c0ed 100644
--- a/lib/stm32/systick.c
+++ b/lib/stm32/systick.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
*
diff --git a/lib/stm32/timer.c b/lib/stm32/timer.c
index 9e7f543..be90d06 100644
--- a/lib/stm32/timer.c
+++ b/lib/stm32/timer.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Edward Cheeseman <evbuilder@users.sourceforge.org>
*
diff --git a/lib/stm32/usart.c b/lib/stm32/usart.c
index 0247f0d..a16e45a 100644
--- a/lib/stm32/usart.c
+++ b/lib/stm32/usart.c
@@ -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/vector.c b/lib/stm32/vector.c
index f83e64d..4d3d510 100644
--- a/lib/stm32/vector.c
+++ b/lib/stm32/vector.c
@@ -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/lib/usb/usb.c b/lib/usb/usb.c
index 7c5fece..1e8ad44 100644
--- a/lib/usb/usb.c
+++ b/lib/usb/usb.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/usb/usb_control.c b/lib/usb/usb_control.c
index c85a962..ff46732 100644
--- a/lib/usb/usb_control.c
+++ b/lib/usb/usb_control.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/usb/usb_f103.c b/lib/usb/usb_f103.c
index 874be3e..dab046d 100644
--- a/lib/usb/usb_f103.c
+++ b/lib/usb/usb_f103.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/usb/usb_private.h b/lib/usb/usb_private.h
index b8895db..6303285 100644
--- a/lib/usb/usb_private.h
+++ b/lib/usb/usb_private.h
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*
diff --git a/lib/usb/usb_standard.c b/lib/usb/usb_standard.c
index a718f9f..81616e5 100644
--- a/lib/usb/usb_standard.c
+++ b/lib/usb/usb_standard.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the libopenstm32 project.
+ * This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Gareth McMullin <gareth@blacksphere.co.nz>
*