diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-13 09:20:53 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-13 09:20:53 +0000 |
commit | e294750f0643ad284b9ccb52626dcbfa67b54e92 (patch) | |
tree | 7be166cfe29e101047b64fc9362d5ad03f429d86 /testhal/STM32/STM32F4xx | |
parent | 4405c6c0ed0f9d1dbffe4066d26502cb4908024d (diff) | |
download | ChibiOS-e294750f0643ad284b9ccb52626dcbfa67b54e92.tar.gz ChibiOS-e294750f0643ad284b9ccb52626dcbfa67b54e92.tar.bz2 ChibiOS-e294750f0643ad284b9ccb52626dcbfa67b54e92.zip |
Typos.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7974 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx')
-rw-r--r-- | testhal/STM32/STM32F4xx/DAC/main.c | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/DAC_DUAL/main.c | 2 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/I2S/main.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F4xx/DAC/main.c b/testhal/STM32/STM32F4xx/DAC/main.c index e57d8a3f2..08b3faf24 100644 --- a/testhal/STM32/STM32F4xx/DAC/main.c +++ b/testhal/STM32/STM32F4xx/DAC/main.c @@ -143,7 +143,7 @@ int main(void) { gptStartContinuous(&GPTD6, 2U);
/*
- * Normal main() thread activity, if the button is pressed then the I2s
+ * Normal main() thread activity, if the button is pressed then the DAC
* transfer is stopped.
*/
while (true) {
diff --git a/testhal/STM32/STM32F4xx/DAC_DUAL/main.c b/testhal/STM32/STM32F4xx/DAC_DUAL/main.c index b6d46b284..d72cd7ec4 100644 --- a/testhal/STM32/STM32F4xx/DAC_DUAL/main.c +++ b/testhal/STM32/STM32F4xx/DAC_DUAL/main.c @@ -146,7 +146,7 @@ int main(void) { gptStartContinuous(&GPTD6, 2U);
/*
- * Normal main() thread activity, if the button is pressed then the I2s
+ * Normal main() thread activity, if the button is pressed then the DAC
* transfer is stopped.
*/
while (true) {
diff --git a/testhal/STM32/STM32F4xx/I2S/main.c b/testhal/STM32/STM32F4xx/I2S/main.c index 21895f7d3..d3f87d850 100644 --- a/testhal/STM32/STM32F4xx/I2S/main.c +++ b/testhal/STM32/STM32F4xx/I2S/main.c @@ -67,7 +67,7 @@ int main(void) { i2sStartExchange(&I2SD2);
/*
- * Normal main() thread activity, if the button is pressed then the I2s
+ * Normal main() thread activity, if the button is pressed then the I2S
* transfer is stopped.
*/
while (true) {
|