git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15278 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
8eca9d11d6
commit
0c2ff53998
|
@ -98,6 +98,8 @@ DEPDIR := ./.dep
|
|||
include $(CHIBIOS)/os/license/license.mk
|
||||
# Startup files.
|
||||
include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32g4xx.mk
|
||||
# Common files.
|
||||
include $(CHIBIOS)/os/common/utils/utils.mk
|
||||
# HAL-OSAL files (optional).
|
||||
include $(CHIBIOS)/os/hal/hal.mk
|
||||
include $(CHIBIOS)/os/hal/ports/STM32/STM32G4xx/platform.mk
|
||||
|
@ -107,6 +109,8 @@ include $(CHIBIOS)/os/hal/osal/rt-nil/osal.mk
|
|||
include $(CHIBIOS)/os/rt/rt.mk
|
||||
include $(CHIBIOS)/os/common/ports/ARMv7-M-ALT/compilers/GCC/mk/port.mk
|
||||
include $(CHIBIOS)/os/sb/host/compilers/GCC/sbhost.mk
|
||||
# VFS files (optional).
|
||||
include $(CHIBIOS)/os/vfs/vfs.mk
|
||||
# Auto-build files in ./source recursively.
|
||||
include $(CHIBIOS)/tools/mk/autobuild.mk
|
||||
# Other files (optional).
|
||||
|
|
|
@ -45,6 +45,13 @@
|
|||
#define SB_CFG_ENABLE_VFS TRUE
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Number of file descriptors for each sandbox.
|
||||
*/
|
||||
#if !defined(SB_CFG_FD_NUM) || defined(__DOXYGEN__)
|
||||
#define SB_CFG_FD_NUM 12
|
||||
#endif
|
||||
|
||||
#endif /* SBCONF_H */
|
||||
|
||||
/** @} */
|
||||
|
|
Loading…
Reference in New Issue