aboutsummaryrefslogtreecommitdiff
path: root/examples
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
parent18790a2454d2d59946b018ad5f1e33abbc17a65c (diff)
More libopenstm32 renames.
Diffstat (limited to 'examples')
-rw-r--r--examples/lpc13xx/lpc-p1343/miniblink/README2
-rw-r--r--examples/stm32/lisa-m/usb_dfu/usbdfu.ld2
-rw-r--r--examples/stm32/lisa-m/usb_hid/usbhid.ld2
-rw-r--r--examples/stm32/mb525/fancyblink/README2
-rw-r--r--examples/stm32/mb525/fancyblink/fancyblink.ld2
-rw-r--r--examples/stm32/mb525/pwmleds/README2
-rw-r--r--examples/stm32/mb525/pwmleds/pwmleds.ld2
-rw-r--r--examples/stm32/obldc/can/can.ld2
-rw-r--r--examples/stm32/obldc/led/led.ld2
-rw-r--r--examples/stm32/obldc/systick/systick.ld2
-rw-r--r--examples/stm32/obldc/usart/usart.ld2
-rw-r--r--examples/stm32/obldc/usart_irq/usart_irq.ld2
-rw-r--r--examples/stm32/other/adc_temperature_sensor/adc.ld2
-rw-r--r--examples/stm32/other/dma_mem2mem/dma.ld2
-rw-r--r--examples/stm32/other/dogm128/main.ld2
-rw-r--r--examples/stm32/other/i2c_stts75_sensor/i2c_stts75_sensor.ld2
-rw-r--r--examples/stm32/other/rtc/rtc.ld2
-rw-r--r--examples/stm32/other/systick/systick.ld2
-rw-r--r--examples/stm32/other/timer_interrupt/timer.ld2
-rw-r--r--examples/stm32/other/usb_cdcacm/cdcacm.ld2
-rw-r--r--examples/stm32/other/usb_dfu/usbdfu.ld2
-rw-r--r--examples/stm32/other/usb_hid/usbhid.ld2
-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
32 files changed, 32 insertions, 32 deletions
diff --git a/examples/lpc13xx/lpc-p1343/miniblink/README b/examples/lpc13xx/lpc-p1343/miniblink/README
index 9595aab..abf4473 100644
--- a/examples/lpc13xx/lpc-p1343/miniblink/README
+++ b/examples/lpc13xx/lpc-p1343/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 NXP LPC1343-based Olimex LPC-1343 eval board (see
http://olimex.com/dev/lpc-p1343.html for details). It should blink
diff --git a/examples/stm32/lisa-m/usb_dfu/usbdfu.ld b/examples/stm32/lisa-m/usb_dfu/usbdfu.ld
index 3038601..1d24b18 100644
--- a/examples/stm32/lisa-m/usb_dfu/usbdfu.ld
+++ b/examples/stm32/lisa-m/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/lisa-m/usb_hid/usbhid.ld b/examples/stm32/lisa-m/usb_hid/usbhid.ld
index 2c85647..f70ddee 100644
--- a/examples/stm32/lisa-m/usb_hid/usbhid.ld
+++ b/examples/stm32/lisa-m/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/mb525/fancyblink/README b/examples/stm32/mb525/fancyblink/README
index 8590e83..226cb21 100644
--- a/examples/stm32/mb525/fancyblink/README
+++ b/examples/stm32/mb525/fancyblink/README
@@ -2,7 +2,7 @@
README
------------------------------------------------------------------------------
-This is a blink example program using libopenstm32.
+This is a blink example program using libopencm3.
It's intended for the ST STM32-based MB525 eval board (see
http://www.st.com/stonline/products/literature/um/13472.htm for details).
diff --git a/examples/stm32/mb525/fancyblink/fancyblink.ld b/examples/stm32/mb525/fancyblink/fancyblink.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/mb525/fancyblink/fancyblink.ld
+++ b/examples/stm32/mb525/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/mb525/pwmleds/README b/examples/stm32/mb525/pwmleds/README
index 3e4cb4d..b2a6d95 100644
--- a/examples/stm32/mb525/pwmleds/README
+++ b/examples/stm32/mb525/pwmleds/README
@@ -2,7 +2,7 @@
README
------------------------------------------------------------------------------
-This is a PWM based LED fading example using libopenstm32.
+This is a PWM based LED fading example using libopencm3.
It's intended for the ST STM32-based MB525 eval board (see
http://www.st.com/stonline/products/literature/um/13472.htm for details).
diff --git a/examples/stm32/mb525/pwmleds/pwmleds.ld b/examples/stm32/mb525/pwmleds/pwmleds.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/mb525/pwmleds/pwmleds.ld
+++ b/examples/stm32/mb525/pwmleds/pwmleds.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/obldc/can/can.ld b/examples/stm32/obldc/can/can.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/obldc/can/can.ld
+++ b/examples/stm32/obldc/can/can.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/obldc/led/led.ld b/examples/stm32/obldc/led/led.ld
index 39f4ad0..4ca199e 100644
--- a/examples/stm32/obldc/led/led.ld
+++ b/examples/stm32/obldc/led/led.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/obldc/systick/systick.ld b/examples/stm32/obldc/systick/systick.ld
index 1668f90..e0057d9 100644
--- a/examples/stm32/obldc/systick/systick.ld
+++ b/examples/stm32/obldc/systick/systick.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/obldc/usart/usart.ld b/examples/stm32/obldc/usart/usart.ld
index 39f4ad0..4ca199e 100644
--- a/examples/stm32/obldc/usart/usart.ld
+++ b/examples/stm32/obldc/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/obldc/usart_irq/usart_irq.ld b/examples/stm32/obldc/usart_irq/usart_irq.ld
index 39f4ad0..4ca199e 100644
--- a/examples/stm32/obldc/usart_irq/usart_irq.ld
+++ b/examples/stm32/obldc/usart_irq/usart_irq.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/other/adc_temperature_sensor/adc.ld b/examples/stm32/other/adc_temperature_sensor/adc.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/adc_temperature_sensor/adc.ld
+++ b/examples/stm32/other/adc_temperature_sensor/adc.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/other/dma_mem2mem/dma.ld b/examples/stm32/other/dma_mem2mem/dma.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/dma_mem2mem/dma.ld
+++ b/examples/stm32/other/dma_mem2mem/dma.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/other/dogm128/main.ld b/examples/stm32/other/dogm128/main.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/dogm128/main.ld
+++ b/examples/stm32/other/dogm128/main.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/other/i2c_stts75_sensor/i2c_stts75_sensor.ld b/examples/stm32/other/i2c_stts75_sensor/i2c_stts75_sensor.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/i2c_stts75_sensor/i2c_stts75_sensor.ld
+++ b/examples/stm32/other/i2c_stts75_sensor/i2c_stts75_sensor.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/other/rtc/rtc.ld b/examples/stm32/other/rtc/rtc.ld
index 0dc9708..abe9cea 100644
--- a/examples/stm32/other/rtc/rtc.ld
+++ b/examples/stm32/other/rtc/rtc.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/other/systick/systick.ld b/examples/stm32/other/systick/systick.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/systick/systick.ld
+++ b/examples/stm32/other/systick/systick.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/other/timer_interrupt/timer.ld b/examples/stm32/other/timer_interrupt/timer.ld
index cb924b6..3303f26 100644
--- a/examples/stm32/other/timer_interrupt/timer.ld
+++ b/examples/stm32/other/timer_interrupt/timer.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/other/usb_cdcacm/cdcacm.ld b/examples/stm32/other/usb_cdcacm/cdcacm.ld
index 1e1df7d..0b2918e 100644
--- a/examples/stm32/other/usb_cdcacm/cdcacm.ld
+++ b/examples/stm32/other/usb_cdcacm/cdcacm.ld
@@ -24,6 +24,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/other/usb_dfu/usbdfu.ld b/examples/stm32/other/usb_dfu/usbdfu.ld
index 3038601..1d24b18 100644
--- a/examples/stm32/other/usb_dfu/usbdfu.ld
+++ b/examples/stm32/other/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/other/usb_hid/usbhid.ld b/examples/stm32/other/usb_hid/usbhid.ld
index 1e1df7d..0b2918e 100644
--- a/examples/stm32/other/usb_hid/usbhid.ld
+++ b/examples/stm32/other/usb_hid/usbhid.ld
@@ -24,6 +24,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/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