-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.mk
39 lines (35 loc) · 1.79 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#*********************************************************************************************************
#
# 北京翼辉信息技术有限公司
#
# 微型安全实时操作系统
#
# MS-RTOS(TM)
#
# Copyright All Rights Reserved
#
#--------------文件信息--------------------------------------------------------------------------------
#
# 文 件 名: config.mk
#
# 创 建 人: IoT Studio
#
# 文件创建日期: 2020 年 05 月 22 日
#
# 描 述: 本文件由 IoT Studio 生成,用于配置 Makefile 功能,请勿手动修改
#*********************************************************************************************************
#*********************************************************************************************************
# MS-RTOS Base Project path
#*********************************************************************************************************
MSRTOS_BASE_PATH := $(WORKSPACE_msrtos_base_sdk)
#*********************************************************************************************************
# Debug options (debug or release)
#*********************************************************************************************************
DEBUG_LEVEL := release
#*********************************************************************************************************
# NOTICE: libmsrtos, BSP and other kernel modules projects CAN NOT use vfp!
#*********************************************************************************************************
FPU_TYPE := disable
#*********************************************************************************************************
# End
#*********************************************************************************************************