-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform_list.py
86 lines (78 loc) · 1.9 KB
/
platform_list.py
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# coding=utf-8
#*******************************************************************
#* Copyright (c) 2013 Freescale Semiconductor Inc.
#* All rights reserved.
#*
#* Use of Freescale code is governed by terms and conditions
#* stated in the accompanying licensing statement.
#* Description: Plugin Map
#*
#* Revision History:
#* -----------------
#* Code Version YYYY-MM-DD Author Description
#* 0.1 2014-03-27 Armand Wang Create this file
#*******************************************************************
platform_list = ['frdmk64f120m',
'twrk22f120m',
'twrk64f120m',
'twrk22f120m128r',
'twrk22f120m256r',
'twrkv31f120m',
'twrkv31f120m128r',
'frdmk22f120m',
'twrk24f120m',
'twrkv31f120m256r',
'frdmkl03z48m',
'twrkv30f100m',
'twrkl43z48m',
'frdmkl43z48m',
'frdmk22f120mk02',
'twrk22f120mk02',
'twrkv30f100mk02',
'twrkv31f120mkv30',
]
target_list = ['Debug',
'Release',
'Flash_Debug',
'Flash_Release',
'Ram_Debug',
'Ram_Release',
]
debugger_list = ['pne',
'jlink',
]
ide_list = ['iar',
'gcc_arm',
'uv4',
'kds',
'cw10',
'mingw'
]
device_type = [
'MK64FN1M0xxx12',
'MK22FN512xxx12',
'MK64FN1M0xxx12',
'MK22FN128xx10',
'MK22FN256xxx12',
'MKV31F512xxx12',
'MKV31F128xxx10',
'MK22FN512xxx12',
'MK24FN256xxx12',
'MKV31F256xxx12',
'MKL03Z32xxx4',
'MKV30F128xxx10',
'MKL43Z256xxx4',
'MKL43Z256xxx4',
'MK02FN128xx10',
'MK02FN128xx10',
'MK02FN128xx10',
'MKV30F128xxx10',
]
test_suite = [
'MQX-OOBE',
'KSDK-MQX-OOBE',
'KSV',
'KSDK-DEMO',
'KSDK-USB',
'KSDK-UnitTest',
]