aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32/stm32-h103
diff options
context:
space:
mode:
authorUwe Hermann2010-12-30 13:22:56 +0100
committerUwe Hermann2010-12-30 13:22:56 +0100
commita97dd10a95f828f4d99b5e723609816fc6650618 (patch)
tree95cfff485bfc87a3e854ffaacde7e4285ffe7d02 /examples/stm32/stm32-h103
parent18790a2454d2d59946b018ad5f1e33abbc17a65c (diff)
More libopenstm32 renames.
Diffstat (limited to 'examples/stm32/stm32-h103')
-rw-r--r--examples/stm32/stm32-h103/fancyblink/README2
-rw-r--r--examples/stm32/stm32-h103/fancyblink/fancyblink.ld2
-rw-r--r--examples/stm32/stm32-h103/miniblink/README2
-rw-r--r--examples/stm32/stm32-h103/miniblink/miniblink.ld2
-rw-r--r--examples/stm32/stm32-h103/spi/spi.ld2
-rw-r--r--examples/stm32/stm32-h103/usart/usart.ld2
-rw-r--r--examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld2
-rw-r--r--examples/stm32/stm32-h103/usb_dfu/usbdfu.ld2
-rw-r--r--examples/stm32/stm32-h103/usb_hid/usbhid.ld2
-rw-r--r--examples/stm32/stm32-h103/usb_iap/usbiap.ld2
10 files changed, 10 insertions, 10 deletions
diff --git a/examples/stm32/stm32-h103/fancyblink/README b/examples/stm32/stm32-h103/fancyblink/README
index 791af39..bdb6ec8 100644
--- a/examples/stm32/stm32-h103/fancyblink/README
+++ b/examples/stm32/stm32-h103/fancyblink/README
@@ -2,7 +2,7 @@
README
------------------------------------------------------------------------------
-This is small LED blinking example program using libopenstm32.
+This is small LED blinking example program using libopencm3.
It's intended for the ST STM32-based Olimex STM32-H103 eval board (see
http://olimex.com/dev/stm32-h103.html for details). It should blink
diff --git a/examples/stm32/stm32-h103/fancyblink/fancyblink.ld b/examples/stm32/stm32-h103/fancyblink/fancyblink.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/stm32-h103/fancyblink/fancyblink.ld
+++ b/examples/stm32/stm32-h103/fancyblink/fancyblink.ld
@@ -26,6 +26,6 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/miniblink/README b/examples/stm32/stm32-h103/miniblink/README
index 66359f4..0e046f2 100644
--- a/examples/stm32/stm32-h103/miniblink/README
+++ b/examples/stm32/stm32-h103/miniblink/README
@@ -2,7 +2,7 @@
README
------------------------------------------------------------------------------
-This is the smallest-possible example program using libopenstm32.
+This is the smallest-possible example program using libopencm3.
It's intended for the ST STM32-based Olimex STM32-H103 eval board (see
http://olimex.com/dev/stm32-h103.html for details). It should blink
diff --git a/examples/stm32/stm32-h103/miniblink/miniblink.ld b/examples/stm32/stm32-h103/miniblink/miniblink.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/stm32-h103/miniblink/miniblink.ld
+++ b/examples/stm32/stm32-h103/miniblink/miniblink.ld
@@ -26,6 +26,6 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/spi/spi.ld b/examples/stm32/stm32-h103/spi/spi.ld
index 6243b04..b06cbed 100644
--- a/examples/stm32/stm32-h103/spi/spi.ld
+++ b/examples/stm32/stm32-h103/spi/spi.ld
@@ -26,6 +26,6 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/usart/usart.ld b/examples/stm32/stm32-h103/usart/usart.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/stm32-h103/usart/usart.ld
+++ b/examples/stm32/stm32-h103/usart/usart.ld
@@ -26,6 +26,6 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld b/examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld
index 2c85647..f70ddee 100644
--- a/examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld
+++ b/examples/stm32/stm32-h103/usb_cdcacm/cdcacm.ld
@@ -27,6 +27,6 @@ MEMORY
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/usb_dfu/usbdfu.ld b/examples/stm32/stm32-h103/usb_dfu/usbdfu.ld
index 3038601..1d24b18 100644
--- a/examples/stm32/stm32-h103/usb_dfu/usbdfu.ld
+++ b/examples/stm32/stm32-h103/usb_dfu/usbdfu.ld
@@ -24,6 +24,6 @@ MEMORY
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 4K
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/usb_hid/usbhid.ld b/examples/stm32/stm32-h103/usb_hid/usbhid.ld
index 2c85647..f70ddee 100644
--- a/examples/stm32/stm32-h103/usb_hid/usbhid.ld
+++ b/examples/stm32/stm32-h103/usb_hid/usbhid.ld
@@ -27,6 +27,6 @@ MEMORY
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld
diff --git a/examples/stm32/stm32-h103/usb_iap/usbiap.ld b/examples/stm32/stm32-h103/usb_iap/usbiap.ld
index 2c85647..f70ddee 100644
--- a/examples/stm32/stm32-h103/usb_iap/usbiap.ld
+++ b/examples/stm32/stm32-h103/usb_iap/usbiap.ld
@@ -27,6 +27,6 @@ MEMORY
}
-/* Include the common ld script from libopenstm32. */
+/* Include the common ld script. */
INCLUDE stm32.ld