diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-07-24 15:44:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-07-24 15:44:46 +0000 |
commit | 00aca9799f69b34a272c52f6d53537222d1a3ab2 (patch) | |
tree | 0f2fa218c030391e96d6bcc8be845167b6a7af4b /testhal | |
parent | 10693865c9b707c680041f18ae602a64f3514071 (diff) | |
download | ChibiOS-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/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/CAN/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/GPT/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/GPT/main.c | 4 | ||||
-rw-r--r-- | testhal/STM32/IRQ_STORM/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/PWM-ICU/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/SDIO/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/SPI/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/UART/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/USB_CDC/Makefile | 2 | ||||
-rw-r--r-- | testhal/STM32/USB_MSC/Makefile | 2 |
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
|