git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1139 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
7e8248b04b
commit
ea88c85382
|
@ -67,8 +67,8 @@ CSRC = ${PORTSRC} \
|
||||||
${TESTSRC} \
|
${TESTSRC} \
|
||||||
../../os/io/pal.c \
|
../../os/io/pal.c \
|
||||||
../../os/io/serial.c \
|
../../os/io/serial.c \
|
||||||
../../os/io/platforms/STM32F103/pal_lld.c \
|
../../os/io/platforms/STM32/pal_lld.c \
|
||||||
../../os/io/platforms/STM32F103/serial_lld.c \
|
../../os/io/platforms/STM32/serial_lld.c \
|
||||||
../../os/various/evtimer.c \
|
../../os/various/evtimer.c \
|
||||||
board.c main.c
|
board.c main.c
|
||||||
|
|
||||||
|
@ -99,11 +99,11 @@ TCPPSRC =
|
||||||
|
|
||||||
# List ASM source files here
|
# List ASM source files here
|
||||||
ASMSRC = $(PORTASM) \
|
ASMSRC = $(PORTASM) \
|
||||||
../../ports/ARMCM3-STM32F103/vectors.s
|
../../os/ports/GCC/ARMCM3/STM32F103/vectors.s
|
||||||
|
|
||||||
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
../../os/io \
|
../../os/io \
|
||||||
../../os/io/platforms/STM32F103 \
|
../../os/io/platforms/STM32 \
|
||||||
../../os/various \
|
../../os/various \
|
||||||
./stm32lib/inc
|
./stm32lib/inc
|
||||||
|
|
||||||
|
|
|
@ -592,7 +592,7 @@ INPUT = ../docs/src \
|
||||||
../os/io/platforms/AVR \
|
../os/io/platforms/AVR \
|
||||||
../os/io/platforms/LPC214x \
|
../os/io/platforms/LPC214x \
|
||||||
../os/io/platforms/MSP430 \
|
../os/io/platforms/MSP430 \
|
||||||
../os/io/platforms/STM32F103 \
|
../os/io/platforms/STM32 \
|
||||||
../os/various \
|
../os/various \
|
||||||
../test
|
../test
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @defgroup PAL_LLD PAL Low Level Driver template
|
* @defgroup PAL_LLD PAL Low Level Driver Template
|
||||||
* @brief @ref PAL low level driver template.
|
* @brief @ref PAL low level driver template.
|
||||||
* @details This file is a template for an I/O port low level driver.
|
* @details This file is a template for an I/O port low level driver.
|
||||||
*
|
*
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @defgroup SERIAL_LLD Serial Low Level Driver template
|
* @defgroup SERIAL_LLD Serial Low Level Driver Template
|
||||||
* @brief @ref SERIAL low level driver template.
|
* @brief @ref SERIAL low level driver template.
|
||||||
* @details This file is a template for a serial low level driver.
|
* @details This file is a template for a serial low level driver.
|
||||||
*
|
*
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file STM32F103/pal_lld.c
|
* @file STM32/pal_lld.c
|
||||||
* @brief STM32 GPIO low level driver code
|
* @brief STM32 GPIO low level driver code
|
||||||
* @addtogroup STM32F103_PAL
|
* @addtogroup STM32_PAL
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file STM32F103/pal_lld.h
|
* @file STM32/pal_lld.h
|
||||||
* @brief STM32 GPIO low level driver header
|
* @brief STM32 GPIO low level driver header
|
||||||
* @addtogroup STM32F103_PAL
|
* @addtogroup STM32_PAL
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file STM32F103/stm32_can.c
|
* @file STM32/stm32_can.c
|
||||||
* @brief STM32 CAN driver code
|
* @brief STM32 CAN driver code
|
||||||
* @addtogroup STM32F103_CAN
|
* @addtogroup STM32_CAN
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file STM32F103/stm32_can.h
|
* @file STM32/stm32_can.h
|
||||||
* @brief STM32 CAN driver header file
|
* @brief STM32 CAN driver header file
|
||||||
* @addtogroup STM32F103_CAN
|
* @addtogroup STM32_CAN
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue