forked from xuos/xiuos
add user api printf
This commit is contained in:
parent
e603afa739
commit
f564ef8d28
|
@ -1,7 +1,4 @@
|
||||||
menu "Kernel feature"
|
menu "Kernel feature"
|
||||||
config COMPILE_WITH_XIUOS
|
|
||||||
bool "select xiuos kernel"
|
|
||||||
default y
|
|
||||||
|
|
||||||
menu "separate compile(choose none for compile once)"
|
menu "separate compile(choose none for compile once)"
|
||||||
config SEPARATE_COMPILE
|
config SEPARATE_COMPILE
|
||||||
|
|
|
@ -92,6 +92,7 @@ struct InitSequenceDesc components_init[] =
|
||||||
#ifdef FS_CH376
|
#ifdef FS_CH376
|
||||||
{ "ch376", Ch376fsInit },
|
{ "ch376", Ch376fsInit },
|
||||||
#endif
|
#endif
|
||||||
|
{ "libc_system", LibcSystemInit },
|
||||||
#ifdef RTC_SYNC_USING_NTP
|
#ifdef RTC_SYNC_USING_NTP
|
||||||
{ "rtc_ntp_sync",RtcNtpSyncInit},
|
{ "rtc_ntp_sync",RtcNtpSyncInit},
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -5,7 +5,7 @@ APPPATHS += -I$(KERNEL_ROOT)/../../APP_Framework/Applications/general_functions/
|
||||||
-I$(KERNEL_ROOT)/../../APP_Framework/lib/app_newlib/include \
|
-I$(KERNEL_ROOT)/../../APP_Framework/lib/app_newlib/include \
|
||||||
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/sensor #
|
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/sensor #
|
||||||
|
|
||||||
ifeq ($(CONFIG_COMPILE_WITH_XIUOS), y)
|
ifeq ($(CONFIG_ADD_XIUOS_FETURES), y)
|
||||||
APPPATHS += -I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos \
|
APPPATHS += -I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos \
|
||||||
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos/user_api/switch_api \
|
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos/user_api/switch_api \
|
||||||
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos/user_api/posix_support/include #
|
-I$(KERNEL_ROOT)/../../APP_Framework/Framework/transform_layer/xiuos/user_api/posix_support/include #
|
||||||
|
|
Loading…
Reference in New Issue