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

This commit is contained in:
gdisirio 2008-06-26 14:06:21 +00:00
parent 8292744ffd
commit cc44376c6e
18 changed files with 114 additions and 87 deletions

View File

@ -61,14 +61,16 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC = ../../ports/ARM7-AT91SAM7X/chcore.c \
../../ports/ARM7-AT91SAM7X/sam7x_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
at91lib/aic.c \
board.c main.c

View File

@ -61,6 +61,10 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC =
@ -69,11 +73,9 @@ ASRC =
# enabled for all modules and that lowers performance.
TSRC = ../../ports/ARM7-AT91SAM7X/chcore.c \
../../ports/ARM7-AT91SAM7X/sam7x_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
at91lib/aic.c \
board.c main.c

View File

@ -61,15 +61,9 @@ UDEFS =
# Define ASM defines here
UADEFS =
# List of all the ChibiOS/RT kernel files, there is no need to remove the files
# from this list, you can disable parts of the kernel by editing chconf.h.
KSRC = ../../src/chinit.c ../../src/chdebug.c \
../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c \
../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c \
../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List of the required uIP source files.
USRC = ../../ext/uip-1.0/uip/uip_arp.c \
@ -84,8 +78,10 @@ USRC = ../../ext/uip-1.0/uip/uip_arp.c \
ASRC = ../../ports/ARM7-AT91SAM7X/chcore.c \
../../ports/ARM7-AT91SAM7X/sam7x_serial.c \
../../ports/ARM7-AT91SAM7X/sam7x_emac.c \
${KSRC} ${USRC} \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
${USRC} \
../../src/lib/evtimer.c \
at91lib/aic.c \
web/webthread.c \
board.c main.c

View File

@ -61,15 +61,9 @@ UDEFS =
# Define ASM defines here
UADEFS =
# List of all the ChibiOS/RT kernel files, there is no need to remove the files
# from this list, you can disable parts of the kernel by editing chconf.h.
KSRC = ../../src/chinit.c ../../src/chdebug.c \
../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c \
../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c \
../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List of the required uIP source files.
USRC = ../../ext/uip-1.0/uip/uip_arp.c \
@ -90,8 +84,10 @@ ASRC =
TSRC = ../../ports/ARM7-AT91SAM7X/chcore.c \
../../ports/ARM7-AT91SAM7X/sam7x_serial.c \
../../ports/ARM7-AT91SAM7X/sam7x_emac.c \
${KSRC} ${USRC} \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
${USRC} \
../../src/lib/evtimer.c \
at91lib/aic.c \
web/webthread.c \
board.c main.c

View File

@ -67,15 +67,17 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ACSRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../ports/ARM7-LPC214x/lpc214x_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
board.c
# List ARM-mode C++ source files here

View File

@ -67,6 +67,10 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ACSRC =
@ -77,11 +81,9 @@ ACPPSRC =
TCSRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../ports/ARM7-LPC214x/lpc214x_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
board.c
# List THUMB-mode C++ source files here

View File

@ -61,13 +61,14 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
${KERNSRC} \
board.c main.c
# List THUMB-mode C sources here

View File

@ -61,6 +61,10 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC =
@ -69,10 +73,7 @@ ASRC =
# enabled for all modules and that lowers performance.
TSRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
${KERNSRC} \
board.c main.c
# List ASM source files here

View File

@ -61,18 +61,18 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../ports/ARM7-LPC214x/lpc214x_serial.c \
../../ports/ARM7-LPC214x/lpc214x_ssp.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
../../test/test.c ../../test/testrdy.c ../../test/testsem.c \
../../test/testmtx.c ../../test/testmsg.c ../../test/testbmk.c \
board.c buzzer.c mmcsd.c main.c
# List THUMB-mode C sources here

View File

@ -61,6 +61,10 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
ASRC =
@ -71,11 +75,9 @@ TSRC = ../../ports/ARM7-LPC214x/chcore.c \
../../ports/ARM7-LPC214x/vic.c \
../../ports/ARM7-LPC214x/lpc214x_serial.c \
../../ports/ARM7-LPC214x/lpc214x_ssp.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
board.c buzzer.c mmcsd.c main.c
# List ASM source files here

View File

@ -62,14 +62,16 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
SRC = ../../ports/ARMCM3/chcore.c ../../ports/ARMCM3/nvic.c \
../../ports/ARMCM3-STM32F103/stm32_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
board.c main.c
# List ASM source files here

View File

@ -79,14 +79,16 @@ TARGET = ch
OBJDIR = .
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List C source files here. (C dependencies are automatically generated.)
SRC = ../../ports/AVR/chcore.c ../../ports/AVR/avr_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
../../test/test.c \
board.c main.c

View File

@ -79,14 +79,16 @@ TARGET = ch
OBJDIR = .
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List C source files here. (C dependencies are automatically generated.)
SRC = ../../ports/AVR/chcore.c ../../ports/AVR/avr_serial.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
../../test/test.c \
board.c lcd.c main.c

View File

@ -61,13 +61,15 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List ARM-mode C source files here
SRC = ../../ports/MSP430/chcore.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
../../src/lib/evtimer.c ../../test/test.c \
${KERNSRC} \
${TESTSRC} \
../../src/lib/evtimer.c \
board.c main.c
# List ASM source files here

View File

@ -55,13 +55,14 @@ UDEFS =
# Define ASM defines here
UADEFS =
# Imported source files
include ../../src/kernel.mk
include ../../test/test.mk
# List C source files here
SRC = chcore.c demo.c \
../../test/test.c ../../ports/win32/simcom.c \
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c \
SRC = chcore.c demo.c ../../ports/win32/simcom.c \
${KERNSRC} \
${TESTSRC}
# List ASM source files here
ASRC = chcore2.s

View File

@ -84,6 +84,8 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
- FIX: Fixed a problem in the STM32 port USART1 driver.
- Added the definitions for packed structures to the chtypes.h files.
- Fixed a problem in the MMC/SD driver in the LPC2148 demo.
- Improvements to the makefiles, now each source group has its own .mk include
file. Now it is no more required to rewrite everything in each makefile.
*** 0.6.5 ***
- NEW: Web server demo for the AT91SAM7X256, the demo integrates the uIP

9
src/kernel.mk Normal file
View File

@ -0,0 +1,9 @@
# List of all the ChibiOS/RT kernel files, there is no need to remove the files
# from this list, you can disable parts of the kernel by editing chconf.h.
KERNSRC = ../../src/chinit.c ../../src/chdebug.c \
../../src/chlists.c ../../src/chdelta.c \
../../src/chschd.c ../../src/chthreads.c \
../../src/chsem.c ../../src/chmtx.c \
../../src/chevents.c ../../src/chmsg.c \
../../src/chsleep.c ../../src/chqueues.c \
../../src/chserial.c

3
test/test.mk Normal file
View File

@ -0,0 +1,3 @@
# List of all the ChibiOS/RT test files.
TESTSRC = ../../test/test.c ../../test/testrdy.c ../../test/testsem.c \
../../test/testmtx.c ../../test/testmsg.c ../../test/testbmk.c