aboutsummaryrefslogtreecommitdiffstats
path: root/testhal
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-07-24 15:44:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-07-24 15:44:46 +0000
commit00aca9799f69b34a272c52f6d53537222d1a3ab2 (patch)
tree0f2fa218c030391e96d6bcc8be845167b6a7af4b /testhal
parent10693865c9b707c680041f18ae602a64f3514071 (diff)
downloadChibiOS-00aca9799f69b34a272c52f6d53537222d1a3ab2.tar.gz
ChibiOS-00aca9799f69b34a272c52f6d53537222d1a3ab2.tar.bz2
ChibiOS-00aca9799f69b34a272c52f6d53537222d1a3ab2.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3178 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r--testhal/STM32/ADC/Makefile2
-rw-r--r--testhal/STM32/CAN/Makefile2
-rw-r--r--testhal/STM32/GPT/Makefile2
-rw-r--r--testhal/STM32/GPT/main.c4
-rw-r--r--testhal/STM32/IRQ_STORM/Makefile2
-rw-r--r--testhal/STM32/PWM-ICU/Makefile2
-rw-r--r--testhal/STM32/SDIO/Makefile2
-rw-r--r--testhal/STM32/SPI/Makefile2
-rw-r--r--testhal/STM32/UART/Makefile2
-rw-r--r--testhal/STM32/USB_CDC/Makefile2
-rw-r--r--testhal/STM32/USB_MSC/Makefile2
11 files changed, 12 insertions, 12 deletions
diff --git a/testhal/STM32/ADC/Makefile b/testhal/STM32/ADC/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/ADC/Makefile
+++ b/testhal/STM32/ADC/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/CAN/Makefile b/testhal/STM32/CAN/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/CAN/Makefile
+++ b/testhal/STM32/CAN/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/GPT/Makefile b/testhal/STM32/GPT/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/GPT/Makefile
+++ b/testhal/STM32/GPT/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/GPT/main.c b/testhal/STM32/GPT/main.c
index 57b2977d1..09b3ba9b3 100644
--- a/testhal/STM32/GPT/main.c
+++ b/testhal/STM32/GPT/main.c
@@ -77,9 +77,9 @@ int main(void) {
* Initializes the GPT drivers 1 and 2.
*/
gptStart(&GPTD1, &gpt1cfg);
- gptPolledDelay(&GPTD1, 10); /* Small dealy.*/
+ gptPolledDelay(&GPTD1, 10); /* Small delay.*/
gptStart(&GPTD2, &gpt2cfg);
- gptPolledDelay(&GPTD2, 10); /* Small dealy.*/
+ gptPolledDelay(&GPTD2, 10); /* Small delay.*/
/*
* Normal main() thread activity, it changes the GPT1 period every
diff --git a/testhal/STM32/IRQ_STORM/Makefile b/testhal/STM32/IRQ_STORM/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/IRQ_STORM/Makefile
+++ b/testhal/STM32/IRQ_STORM/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/PWM-ICU/Makefile b/testhal/STM32/PWM-ICU/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/PWM-ICU/Makefile
+++ b/testhal/STM32/PWM-ICU/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/SDIO/Makefile b/testhal/STM32/SDIO/Makefile
index cf88c1190..b3aa02db8 100644
--- a/testhal/STM32/SDIO/Makefile
+++ b/testhal/STM32/SDIO/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/ST_STM3210E_EVAL/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/SPI/Makefile b/testhal/STM32/SPI/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/SPI/Makefile
+++ b/testhal/STM32/SPI/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/UART/Makefile b/testhal/STM32/UART/Makefile
index a5c76f1c8..057213601 100644
--- a/testhal/STM32/UART/Makefile
+++ b/testhal/STM32/UART/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/USB_CDC/Makefile b/testhal/STM32/USB_CDC/Makefile
index 8ebd984fb..4e2217624 100644
--- a/testhal/STM32/USB_CDC/Makefile
+++ b/testhal/STM32/USB_CDC/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
diff --git a/testhal/STM32/USB_MSC/Makefile b/testhal/STM32/USB_MSC/Makefile
index b98b34374..ca7cb971e 100644
--- a/testhal/STM32/USB_MSC/Makefile
+++ b/testhal/STM32/USB_MSC/Makefile
@@ -58,7 +58,7 @@ LDSCRIPT= ch.ld
# Imported source files
CHIBIOS = ../../..
include $(CHIBIOS)/boards/OLIMEX_STM32_P103/board.mk
-include $(CHIBIOS)/os/hal/platforms/STM32/platform.mk
+include $(CHIBIOS)/os/hal/platforms/STM32F1xx/platform.mk
include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARMCMx/STM32/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk