From e340ae2337ea5d4073fca8dcba8c3215984578d7 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 13 Nov 2009 21:15:13 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1285 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ARMCM3-STM32F103-GCC/Makefile | 2 +- demos/ARMCM3-STM32F103-GCC/board.c | 4 ---- readme.txt | 2 ++ 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/demos/ARMCM3-STM32F103-GCC/Makefile b/demos/ARMCM3-STM32F103-GCC/Makefile index 9129cd687..decfbb466 100644 --- a/demos/ARMCM3-STM32F103-GCC/Makefile +++ b/demos/ARMCM3-STM32F103-GCC/Makefile @@ -38,7 +38,7 @@ endif # Enable this if you really want to use the STM FWLib. ifeq ($(USE_FWLIB),) - USE_FWLIB = yes + USE_FWLIB = no endif # diff --git a/demos/ARMCM3-STM32F103-GCC/board.c b/demos/ARMCM3-STM32F103-GCC/board.c index 050c2be62..dac529780 100644 --- a/demos/ARMCM3-STM32F103-GCC/board.c +++ b/demos/ARMCM3-STM32F103-GCC/board.c @@ -20,8 +20,6 @@ #include #include #include -#include -#include #include #include "board.h" @@ -114,9 +112,7 @@ void hwinit1(void) { /* * Other subsystems initialization. */ - dmaInit(); sdInit(); - spiInit(); /* * ChibiOS/RT initialization. diff --git a/readme.txt b/readme.txt index 77450536f..2026815b9 100644 --- a/readme.txt +++ b/readme.txt @@ -11,6 +11,8 @@ - NEW: New SPI (master) driver model. - NEW: SPI driver for STM32 implementing the new SPI driver model. - NEW: New ADC (streaming capable) driver model. +- CHANGE: Moved the STM32 firmware library under ./ext, this way there is no + need to duplicate it in each demo program. *** 1.3.3 *** - FIX: Fixed bug in the LPC2148 PAL driver (bug 2881380).