aboutsummaryrefslogtreecommitdiffstats
path: root/libmaple/stm32f1/include
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-11-29 02:06:33 -0500
committerMarti Bolivar <mbolivar@leaflabs.com>2012-04-11 16:56:52 -0400
commitc2a937bbb56294df10eec082ab23c353edf4629b (patch)
tree7c1c3a2eea048e30dca721d6a33d9d0f9675a45c /libmaple/stm32f1/include
parent626f742037878dfe67c3c133fc9768fa0c0e6d88 (diff)
downloadlibrambutan-c2a937bbb56294df10eec082ab23c353edf4629b.tar.gz
librambutan-c2a937bbb56294df10eec082ab23c353edf4629b.zip
Great renaming: use "series" instead of "family".
This is for greater consistency with the ST application notes, which refer to migrating "across" series (e.g. F1 to F2), but compatibility "within" a family (e.g. F1). So: - Move libmaple/stm32x/include/family to .../include/series/ and fix up includes appropriately. - Refer to "family" headers as "series" headers in comments. - Make similar "find and replace"-style changes to build system variable names and comments. - Move support/ld/stm32/family to .../stm32/series. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'libmaple/stm32f1/include')
-rw-r--r--libmaple/stm32f1/include/series/flash.h (renamed from libmaple/stm32f1/include/family/flash.h)4
-rw-r--r--libmaple/stm32f1/include/series/gpio.h (renamed from libmaple/stm32f1/include/family/gpio.h)0
-rw-r--r--libmaple/stm32f1/include/series/nvic.h (renamed from libmaple/stm32f1/include/family/nvic.h)0
-rw-r--r--libmaple/stm32f1/include/series/rcc.h (renamed from libmaple/stm32f1/include/family/rcc.h)0
-rw-r--r--libmaple/stm32f1/include/series/stm32.h (renamed from libmaple/stm32f1/include/family/stm32.h)2
5 files changed, 3 insertions, 3 deletions
diff --git a/libmaple/stm32f1/include/family/flash.h b/libmaple/stm32f1/include/series/flash.h
index 918a434..efa608c 100644
--- a/libmaple/stm32f1/include/family/flash.h
+++ b/libmaple/stm32f1/include/series/flash.h
@@ -30,7 +30,7 @@
*
* Provides register map, base pointer, and register bit definitions
* for the Flash controller on the STM32F1 line, along with
- * family-specific configuration values.
+ * series-specific configuration values.
*/
#ifndef _LIBMAPLE_STM32F1_FLASH_H_
@@ -130,7 +130,7 @@ typedef struct flash_reg_map {
#define FLASH_OBR_OPTERR BIT(FLASH_OBR_OPTERR_BIT)
/*
- * Family-specific configuration values.
+ * Series-specific configuration values.
*/
#define FLASH_SAFE_WAIT_STATES FLASH_WAIT_STATE_2
diff --git a/libmaple/stm32f1/include/family/gpio.h b/libmaple/stm32f1/include/series/gpio.h
index c10244d..c10244d 100644
--- a/libmaple/stm32f1/include/family/gpio.h
+++ b/libmaple/stm32f1/include/series/gpio.h
diff --git a/libmaple/stm32f1/include/family/nvic.h b/libmaple/stm32f1/include/series/nvic.h
index 69fd945..69fd945 100644
--- a/libmaple/stm32f1/include/family/nvic.h
+++ b/libmaple/stm32f1/include/series/nvic.h
diff --git a/libmaple/stm32f1/include/family/rcc.h b/libmaple/stm32f1/include/series/rcc.h
index 261dc5d..261dc5d 100644
--- a/libmaple/stm32f1/include/family/rcc.h
+++ b/libmaple/stm32f1/include/series/rcc.h
diff --git a/libmaple/stm32f1/include/family/stm32.h b/libmaple/stm32f1/include/series/stm32.h
index 0b77ca0..f0ca616 100644
--- a/libmaple/stm32f1/include/family/stm32.h
+++ b/libmaple/stm32f1/include/series/stm32.h
@@ -26,7 +26,7 @@
/**
* @file libmaple/stm32f1/stm32.h
- * @brief STM32F1 chip- and family-specific definitions.
+ * @brief STM32F1 chip- and series-specific definitions.
*/
#ifndef _LIBMAPLE_STM32F1_H_