aboutsummaryrefslogtreecommitdiffstats
path: root/demos/ARMCM3-STM32F103-FATFS-GCC
diff options
context:
space:
mode:
Diffstat (limited to 'demos/ARMCM3-STM32F103-FATFS-GCC')
-rw-r--r--demos/ARMCM3-STM32F103-FATFS-GCC/ch.ld2
-rw-r--r--demos/ARMCM3-STM32F103-FATFS-GCC/chconf.h4
-rw-r--r--demos/ARMCM3-STM32F103-FATFS-GCC/halconf.h10
-rw-r--r--demos/ARMCM3-STM32F103-FATFS-GCC/main.c6
-rw-r--r--demos/ARMCM3-STM32F103-FATFS-GCC/mcuconf.h6
5 files changed, 14 insertions, 14 deletions
diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/ch.ld b/demos/ARMCM3-STM32F103-FATFS-GCC/ch.ld
index 9d18539f8..0dd8cfeab 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/ch.ld
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/ch.ld
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/chconf.h b/demos/ARMCM3-STM32F103-FATFS-GCC/chconf.h
index d0d7e7d41..300a85579 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/chconf.h
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/chconf.h
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -396,7 +396,7 @@
* @brief Debug option, stacks initialization.
* @details If enabled then the threads working area is filled with a byte
* value when a thread is created. This can be useful for the
- * runtime measurement of the used stack.
+ * runtime measurement of the used stack.
*
* @note The default is @p FALSE.
*/
diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/halconf.h b/demos/ARMCM3-STM32F103-FATFS-GCC/halconf.h
index 36802e62f..525bae43a 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/halconf.h
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/halconf.h
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -27,7 +27,7 @@
/*
* HAL configuration file, this file allows to enable or disable the various
* device drivers from your application. You may also use this file in order
- * to override the device drivers default settings.
+ * to override the device drivers default settings.
*/
#ifndef _HALCONF_H_
@@ -36,7 +36,7 @@
/*
* Uncomment the following line in order to include a mcu-related
* settings file. This file can be used to include platform specific
- * header files or to override the low level drivers settings.
+ * header files or to override the low level drivers settings.
*/
#include "mcuconf.h"
@@ -45,7 +45,7 @@
/*===========================================================================*/
/**
- * @brief Enables the PAL subsystem.
+ * @brief Enables the PAL subsystem.
*/
#if !defined(CH_HAL_USE_PAL) || defined(__DOXYGEN__)
#define CH_HAL_USE_PAL TRUE
@@ -124,7 +124,7 @@
#endif
/*
- * Default SPI settings overrides (uncomment to override).
+ * Default SPI settings overrides (uncomment to override).
*/
/*#define SPI_USE_MUTUAL_EXCLUSION TRUE*/
diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/main.c b/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
index 7322ba1aa..8295e509b 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/main.c
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -144,7 +144,7 @@ static void InsertHandler(eventid_t id) {
(void)id;
iprintf("MMC: inserted\r\n");
/*
- * On insertion MMC initialization and FS mount.
+ * On insertion MMC initialization and FS mount.
*/
iprintf("MMC: initialization ");
if (mmcConnect(&MMCD1)) {
@@ -195,7 +195,7 @@ int main(int argc, char **argv) {
sdStart(&SD2, NULL);
/*
- * Initializes the MMC driver to work with SPI2.
+ * Initializes the MMC driver to work with SPI2.
*/
palSetPadMode(IOPORT2, GPIOB_SPI2NSS, PAL_MODE_OUTPUT_PUSHPULL);
palSetPad(IOPORT2, GPIOB_SPI2NSS);
diff --git a/demos/ARMCM3-STM32F103-FATFS-GCC/mcuconf.h b/demos/ARMCM3-STM32F103-FATFS-GCC/mcuconf.h
index 988e6b79d..e6216b886 100644
--- a/demos/ARMCM3-STM32F103-FATFS-GCC/mcuconf.h
+++ b/demos/ARMCM3-STM32F103-FATFS-GCC/mcuconf.h
@@ -1,5 +1,5 @@
/*
- ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
This file is part of ChibiOS/RT.
@@ -31,11 +31,11 @@
* 0x20...0x00 Fast interrupts, can preempt the kernel but cannot use it.
*
* DMA priorities:
- * 0...3 Lowest...Highest.
+ * 0...3 Lowest...Highest.
*/
/*
- * ADC driver system settings.
+ * ADC driver system settings.
*/
#define USE_STM32_ADC1 TRUE
#define STM32_ADC1_DMA_PRIORITY 3