git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1285 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
09c69c8933
commit
e340ae2337
|
@ -38,7 +38,7 @@ endif
|
||||||
|
|
||||||
# Enable this if you really want to use the STM FWLib.
|
# Enable this if you really want to use the STM FWLib.
|
||||||
ifeq ($(USE_FWLIB),)
|
ifeq ($(USE_FWLIB),)
|
||||||
USE_FWLIB = yes
|
USE_FWLIB = no
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
#include <ch.h>
|
#include <ch.h>
|
||||||
#include <pal.h>
|
#include <pal.h>
|
||||||
#include <serial.h>
|
#include <serial.h>
|
||||||
#include <spi.h>
|
|
||||||
#include <stm32_dma.h>
|
|
||||||
#include <nvic.h>
|
#include <nvic.h>
|
||||||
|
|
||||||
#include "board.h"
|
#include "board.h"
|
||||||
|
@ -114,9 +112,7 @@ void hwinit1(void) {
|
||||||
/*
|
/*
|
||||||
* Other subsystems initialization.
|
* Other subsystems initialization.
|
||||||
*/
|
*/
|
||||||
dmaInit();
|
|
||||||
sdInit();
|
sdInit();
|
||||||
spiInit();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ChibiOS/RT initialization.
|
* ChibiOS/RT initialization.
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
- NEW: New SPI (master) driver model.
|
- NEW: New SPI (master) driver model.
|
||||||
- NEW: SPI driver for STM32 implementing the new SPI driver model.
|
- NEW: SPI driver for STM32 implementing the new SPI driver model.
|
||||||
- NEW: New ADC (streaming capable) 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 ***
|
*** 1.3.3 ***
|
||||||
- FIX: Fixed bug in the LPC2148 PAL driver (bug 2881380).
|
- FIX: Fixed bug in the LPC2148 PAL driver (bug 2881380).
|
||||||
|
|
Loading…
Reference in New Issue