git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1356 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2009-11-29 11:34:24 +00:00
parent ecbccffa62
commit 03933a5925
3 changed files with 10 additions and 20 deletions

View File

@ -20,16 +20,6 @@
#ifndef _BOARD_H_
#define _BOARD_H_
/*
* Tricks required to make the TRUE/FALSE declaration inside the library
* compatible.
*/
#undef FALSE
#undef TRUE
#include <stm32f10x.h>
#define FALSE 0
#define TRUE (!FALSE)
/*
* Uncomment this if you want a 48MHz system clock, else it will be 72MHz.
*/

View File

@ -20,16 +20,6 @@
#ifndef _BOARD_H_
#define _BOARD_H_
/*
* Tricks required to make the TRUE/FALSE declaration inside the library
* compatible.
*/
#undef FALSE
#undef TRUE
#include <stm32f10x.h>
#define FALSE 0
#define TRUE (!FALSE)
/*
* Uncomment this if you want a 48MHz system clock, else it will be 72MHz.
*/

View File

@ -27,6 +27,16 @@
#ifndef _HAL_LLD_H_
#define _HAL_LLD_H_
/*
* Tricks required to make the TRUE/FALSE declaration inside the library
* compatible.
*/
#undef FALSE
#undef TRUE
#include <stm32f10x.h>
#define FALSE 0
#define TRUE (!FALSE)
#include "nvic.h"
#include "stm32_dma.h"