git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8931 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
2240934707
commit
430facf565
|
@ -99,7 +99,7 @@ include $(CHIBIOS)/os/rt/rt.mk
|
|||
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
|
||||
# Other files (optional).
|
||||
include $(CHIBIOS)/test/rt/test.mk
|
||||
include $(CHIBIOS)/os/common/ports/ARMCMx/cmsis_os/cmsis_os.mk
|
||||
include $(CHIBIOS)/os/common/abstractions/cmsis_os/cmsis_os.mk
|
||||
|
||||
# Define linker script file here
|
||||
LDSCRIPT= $(STARTUPLD)/STM32F407xG.ld
|
||||
|
|
|
@ -99,7 +99,7 @@ include $(CHIBIOS)/os/rt/rt.mk
|
|||
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
|
||||
# Other files (optional).
|
||||
include $(CHIBIOS)/test/rt/test.mk
|
||||
include $(CHIBIOS)/os/common/ext/nasa-osal/nasa-osal.mk
|
||||
include $(CHIBIOS)/os/common/abstractions/nasa-osal/nasa-osal.mk
|
||||
|
||||
# Define linker script file here
|
||||
LDSCRIPT= $(STARTUPLD)/STM32F407xG.ld
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
# List of the ChibiOS/RT CMSIS RTOS wrapper.
|
||||
CMSISRTOSSRC = ${CHIBIOS}/os/common/abstractions/cmsis_os/cmsis_os.c
|
||||
|
||||
CMSISRTOSINC = ${CHIBIOS}/os/common/abstractions/cmsis_os
|
|
@ -0,0 +1,4 @@
|
|||
# NASAOSAL files.
|
||||
NASAOSALSRC = $(CHIBIOS)/os/common/abstractions/nasa-osal/src/osapi.c
|
||||
|
||||
NASAOSALINC = $(CHIBIOS)/os/common/abstractions/nasa-osal/include
|
|
@ -1,4 +0,0 @@
|
|||
# NASAOSAL files.
|
||||
NASAOSALSRC = $(CHIBIOS)/os/common/ext/nasa-osal/src/osapi.c
|
||||
|
||||
NASAOSALINC = $(CHIBIOS)/os/common/ext/nasa-osal/include
|
|
@ -1,4 +0,0 @@
|
|||
# List of the ChibiOS/RT CMSIS RTOS wrapper.
|
||||
CMSISRTOSSRC = ${CHIBIOS}/os/common/ports/ARMCMx/cmsis_os/cmsis_os.c
|
||||
|
||||
CMSISRTOSINC = ${CHIBIOS}/os/common/ports/ARMCMx/cmsis_os
|
|
@ -34,6 +34,9 @@
|
|||
| | +--index.html - Local documentation access (after rebuild).
|
||||
+--ext/ - External libraries, not part of ChibiOS/RT.
|
||||
+--os/ - ChibiOS components.
|
||||
| +--abstractions/ - API emulator wrappers.
|
||||
| | +--cmsis-os - CMSIS OS emulation layer for RT (ARMCMx port only).
|
||||
| | +--nasa-osal - NASA Operating System Abstraction Layer for RT.
|
||||
| +--common/ - Shared OS modules.
|
||||
| +--common/ext/ - Vendor files used by the OS.
|
||||
| +--common/oslib/ - RTOS modules usable by both RT and NIL.
|
||||
|
|
Loading…
Reference in New Issue