@bridgetek/eveapps-pre82x-core 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/README.md +138 -0
  2. package/data/build_matrix.json +226 -0
  3. package/data/commands.json +10755 -0
  4. package/data/feature_graph.json +4979 -0
  5. package/data/graphics.json +169 -0
  6. package/data/modules.json +331 -0
  7. package/data/registers.json +5163 -0
  8. package/data/samples.json +765 -0
  9. package/dist/context.d.ts +7 -0
  10. package/dist/context.js +32 -0
  11. package/dist/context.js.map +1 -0
  12. package/dist/index.d.ts +14 -0
  13. package/dist/index.js +15 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/lib/confidence.d.ts +6 -0
  16. package/dist/lib/confidence.js +18 -0
  17. package/dist/lib/confidence.js.map +1 -0
  18. package/dist/lib/eveSymbolAliases.d.ts +10 -0
  19. package/dist/lib/eveSymbolAliases.js +58 -0
  20. package/dist/lib/eveSymbolAliases.js.map +1 -0
  21. package/dist/lib/loadIndex.d.ts +26 -0
  22. package/dist/lib/loadIndex.js +33 -0
  23. package/dist/lib/loadIndex.js.map +1 -0
  24. package/dist/lib/moduleGraphicsLookup.d.ts +18 -0
  25. package/dist/lib/moduleGraphicsLookup.js +66 -0
  26. package/dist/lib/moduleGraphicsLookup.js.map +1 -0
  27. package/dist/lib/normalize.d.ts +3 -0
  28. package/dist/lib/normalize.js +21 -0
  29. package/dist/lib/normalize.js.map +1 -0
  30. package/dist/lib/rank.d.ts +6 -0
  31. package/dist/lib/rank.js +51 -0
  32. package/dist/lib/rank.js.map +1 -0
  33. package/dist/lib/registerVariants.d.ts +13 -0
  34. package/dist/lib/registerVariants.js +77 -0
  35. package/dist/lib/registerVariants.js.map +1 -0
  36. package/dist/lib/workspace.d.ts +4 -0
  37. package/dist/lib/workspace.js +5 -0
  38. package/dist/lib/workspace.js.map +1 -0
  39. package/dist/router/analyzeQuery.d.ts +9 -0
  40. package/dist/router/analyzeQuery.js +12 -0
  41. package/dist/router/analyzeQuery.js.map +1 -0
  42. package/dist/router/index.d.ts +5 -0
  43. package/dist/router/index.js +6 -0
  44. package/dist/router/index.js.map +1 -0
  45. package/dist/router/mergeResults.d.ts +2 -0
  46. package/dist/router/mergeResults.js +25 -0
  47. package/dist/router/mergeResults.js.map +1 -0
  48. package/dist/router/retrieveAnswer.d.ts +3 -0
  49. package/dist/router/retrieveAnswer.js +51 -0
  50. package/dist/router/retrieveAnswer.js.map +1 -0
  51. package/dist/router/routeQuery.d.ts +3 -0
  52. package/dist/router/routeQuery.js +33 -0
  53. package/dist/router/routeQuery.js.map +1 -0
  54. package/dist/router/types.d.ts +13 -0
  55. package/dist/router/types.js +2 -0
  56. package/dist/router/types.js.map +1 -0
  57. package/dist/search/searchCore.d.ts +3 -0
  58. package/dist/search/searchCore.js +103 -0
  59. package/dist/search/searchCore.js.map +1 -0
  60. package/dist/search/searchEveApps.d.ts +2 -0
  61. package/dist/search/searchEveApps.js +111 -0
  62. package/dist/search/searchEveApps.js.map +1 -0
  63. package/dist/search/searchSourceFiles.d.ts +7 -0
  64. package/dist/search/searchSourceFiles.js +71 -0
  65. package/dist/search/searchSourceFiles.js.map +1 -0
  66. package/dist/server.d.ts +1 -0
  67. package/dist/server.js +217 -0
  68. package/dist/server.js.map +1 -0
  69. package/dist/tools/explainEveSymbol.d.ts +84 -0
  70. package/dist/tools/explainEveSymbol.js +81 -0
  71. package/dist/tools/explainEveSymbol.js.map +1 -0
  72. package/dist/tools/findRelevantSample.d.ts +34 -0
  73. package/dist/tools/findRelevantSample.js +33 -0
  74. package/dist/tools/findRelevantSample.js.map +1 -0
  75. package/dist/tools/generateBuildCommand.d.ts +62 -0
  76. package/dist/tools/generateBuildCommand.js +103 -0
  77. package/dist/tools/generateBuildCommand.js.map +1 -0
  78. package/dist/tools/generateScreenScaffold.d.ts +34 -0
  79. package/dist/tools/generateScreenScaffold.js +118 -0
  80. package/dist/tools/generateScreenScaffold.js.map +1 -0
  81. package/dist/tools/lookupModuleGraphics.d.ts +29 -0
  82. package/dist/tools/lookupModuleGraphics.js +25 -0
  83. package/dist/tools/lookupModuleGraphics.js.map +1 -0
  84. package/dist/tools/readSourceFile.d.ts +15 -0
  85. package/dist/tools/readSourceFile.js +39 -0
  86. package/dist/tools/readSourceFile.js.map +1 -0
  87. package/dist/tools/traceFeatureToCommands.d.ts +38 -0
  88. package/dist/tools/traceFeatureToCommands.js +90 -0
  89. package/dist/tools/traceFeatureToCommands.js.map +1 -0
  90. package/dist/tools/validatePre820Code.d.ts +37 -0
  91. package/dist/tools/validatePre820Code.js +88 -0
  92. package/dist/tools/validatePre820Code.js.map +1 -0
  93. package/dist/types.d.ts +72 -0
  94. package/dist/types.js +2 -0
  95. package/dist/types.js.map +1 -0
  96. package/package.json +30 -0
@@ -0,0 +1,169 @@
1
+ {
2
+ "FT800": {
3
+ "family": "GEN1",
4
+ "feature": [ "RESISTIVE" ]
5
+ },
6
+
7
+ "FT801": {
8
+ "family": "GEN1",
9
+ "feature": [ "CAPACITIVE" ]
10
+ },
11
+
12
+ "FT810": {
13
+ "family": "GEN2",
14
+ "feature": [
15
+ "EVE_SUPPORT_PNG",
16
+ "EVE_SUPPORT_VIDEO",
17
+ "EVE_SUPPORT_CMDB",
18
+ "EVE_SUPPORT_MEDIAFIFO",
19
+ "EVE_SUPPORT_RESISTIVE"
20
+ ]
21
+ },
22
+
23
+ "FT811": {
24
+ "family": "GEN2",
25
+ "feature": [
26
+ "EVE_SUPPORT_PNG",
27
+ "EVE_SUPPORT_VIDEO",
28
+ "EVE_SUPPORT_CMDB",
29
+ "EVE_SUPPORT_MEDIAFIFO",
30
+ "EVE_SUPPORT_CAPACITIVE"
31
+ ]
32
+ },
33
+
34
+ "FT812": {
35
+ "family": "GEN2",
36
+ "feature": [
37
+ "EVE_SUPPORT_PNG",
38
+ "EVE_SUPPORT_VIDEO",
39
+ "EVE_SUPPORT_CMDB",
40
+ "EVE_SUPPORT_MEDIAFIFO",
41
+ "EVE_SUPPORT_RESISTIVE"
42
+ ]
43
+ },
44
+
45
+ "FT813": {
46
+ "family": "GEN2",
47
+ "feature": [
48
+ "EVE_SUPPORT_PNG",
49
+ "EVE_SUPPORT_VIDEO",
50
+ "EVE_SUPPORT_CMDB",
51
+ "EVE_SUPPORT_MEDIAFIFO",
52
+ "EVE_SUPPORT_CAPACITIVE"
53
+ ]
54
+ },
55
+
56
+ "BT880": {
57
+ "family": "GEN2",
58
+ "feature": [
59
+ "EVE_SUPPORT_PNG",
60
+ "EVE_SUPPORT_VIDEO",
61
+ "EVE_SUPPORT_CMDB",
62
+ "EVE_SUPPORT_MEDIAFIFO",
63
+ "EVE_SUPPORT_RESISTIVE"
64
+ ]
65
+ },
66
+
67
+ "BT881": {
68
+ "family": "GEN2",
69
+ "feature": [
70
+ "EVE_SUPPORT_PNG",
71
+ "EVE_SUPPORT_VIDEO",
72
+ "EVE_SUPPORT_CMDB",
73
+ "EVE_SUPPORT_MEDIAFIFO",
74
+ "EVE_SUPPORT_CAPACITIVE"
75
+ ]
76
+ },
77
+
78
+ "BT882": {
79
+ "family": "GEN2",
80
+ "feature": [
81
+ "EVE_SUPPORT_PNG",
82
+ "EVE_SUPPORT_VIDEO",
83
+ "EVE_SUPPORT_CMDB",
84
+ "EVE_SUPPORT_MEDIAFIFO",
85
+ "EVE_SUPPORT_RESISTIVE"
86
+ ]
87
+ },
88
+
89
+ "BT883": {
90
+ "family": "GEN2",
91
+ "feature": [
92
+ "EVE_SUPPORT_PNG",
93
+ "EVE_SUPPORT_VIDEO",
94
+ "EVE_SUPPORT_CMDB",
95
+ "EVE_SUPPORT_MEDIAFIFO",
96
+ "EVE_SUPPORT_CAPACITIVE"
97
+ ]
98
+ },
99
+
100
+ "BT815": {
101
+ "family": "GEN3",
102
+ "feature": [
103
+ "EVE_SUPPORT_FLASH",
104
+ "EVE_SUPPORT_UNICODE",
105
+ "EVE_SUPPORT_ASTC",
106
+ "EVE_SUPPORT_PNG",
107
+ "EVE_SUPPORT_VIDEO",
108
+ "EVE_SUPPORT_CMDB",
109
+ "EVE_SUPPORT_MEDIAFIFO",
110
+ "EVE_SUPPORT_RESISTIVE"
111
+ ]
112
+ },
113
+
114
+ "BT816": {
115
+ "family": "GEN3",
116
+ "feature": [
117
+ "EVE_SUPPORT_FLASH",
118
+ "EVE_SUPPORT_UNICODE",
119
+ "EVE_SUPPORT_ASTC",
120
+ "EVE_SUPPORT_PNG",
121
+ "EVE_SUPPORT_VIDEO",
122
+ "EVE_SUPPORT_CMDB",
123
+ "EVE_SUPPORT_MEDIAFIFO",
124
+ "EVE_SUPPORT_CAPACITIVE"
125
+ ]
126
+ },
127
+
128
+ "BT817": {
129
+ "family": "GEN4",
130
+ "feature": [
131
+ "EVE_SUPPORT_FLASH",
132
+ "EVE_SUPPORT_UNICODE",
133
+ "EVE_SUPPORT_ASTC",
134
+ "EVE_SUPPORT_PNG",
135
+ "EVE_SUPPORT_VIDEO",
136
+ "EVE_SUPPORT_CMDB",
137
+ "EVE_SUPPORT_MEDIAFIFO",
138
+ "EVE_SUPPORT_RESISTIVE"
139
+ ]
140
+ },
141
+
142
+ "BT817A": {
143
+ "family": "GEN4",
144
+ "feature": [
145
+ "EVE_SUPPORT_FLASH",
146
+ "EVE_SUPPORT_UNICODE",
147
+ "EVE_SUPPORT_ASTC",
148
+ "EVE_SUPPORT_PNG",
149
+ "EVE_SUPPORT_VIDEO",
150
+ "EVE_SUPPORT_CMDB",
151
+ "EVE_SUPPORT_MEDIAFIFO",
152
+ "EVE_SUPPORT_RESISTIVE"
153
+ ]
154
+ },
155
+
156
+ "BT818": {
157
+ "family": "GEN4",
158
+ "feature": [
159
+ "EVE_SUPPORT_FLASH",
160
+ "EVE_SUPPORT_UNICODE",
161
+ "EVE_SUPPORT_ASTC",
162
+ "EVE_SUPPORT_PNG",
163
+ "EVE_SUPPORT_VIDEO",
164
+ "EVE_SUPPORT_CMDB",
165
+ "EVE_SUPPORT_MEDIAFIFO",
166
+ "EVE_SUPPORT_CAPACITIVE"
167
+ ]
168
+ }
169
+ }
@@ -0,0 +1,331 @@
1
+ {
2
+ "VM800B35A_BK": {
3
+ "graphic": "FT800",
4
+ "touch": "resistive",
5
+ "supportedDisplays": [ "QVGA" ],
6
+ "supportedPlatforms": [ "*" ]
7
+ },
8
+
9
+ "VM800B43A_BK": {
10
+ "graphic": "FT800",
11
+ "touch": "focal",
12
+ "supportedDisplays": [ "WQVGA" ],
13
+ "supportedPlatforms": [ "*" ]
14
+ },
15
+
16
+ "VM800B50A_BK": {
17
+ "graphic": "FT800",
18
+ "touch": "focal",
19
+ "supportedDisplays": [ "WQVGA" ],
20
+ "supportedPlatforms": [ "*" ]
21
+ },
22
+
23
+ "VM801B43A_BK": {
24
+ "graphic": "FT801",
25
+ "touch": "focal",
26
+ "supportedDisplays": [ "WQVGA" ],
27
+ "supportedPlatforms": [ "*" ]
28
+ },
29
+
30
+ "VM801B50A_BK": {
31
+ "graphic": "FT801",
32
+ "touch": "focal",
33
+ "supportedDisplays": [ "WQVGA" ],
34
+ "supportedPlatforms": [ "*" ]
35
+ },
36
+
37
+ "VM800C35A_N": {
38
+ "graphic": "FT800",
39
+ "touch": "",
40
+ "supportedDisplays": [ "QVGA", "WQVGA" ],
41
+ "supportedPlatforms": [ "*" ]
42
+ },
43
+
44
+ "VM800C43A_N": {
45
+ "graphic": "FT800",
46
+ "touch": "",
47
+ "supportedDisplays": [ "QVGA", "WQVGA" ],
48
+ "supportedPlatforms": [ "*" ]
49
+ },
50
+
51
+ "VM800C35A_D": {
52
+ "graphic": "FT800",
53
+ "touch": "resistive",
54
+ "supportedDisplays": [ "QVGA" ],
55
+ "supportedPlatforms": [ "*" ]
56
+ },
57
+
58
+ "VM800C43A_D": {
59
+ "graphic": "FT800",
60
+ "touch": "focal",
61
+ "supportedDisplays": [ "WQVGA" ],
62
+ "supportedPlatforms": [ "*" ]
63
+ },
64
+
65
+ "VM800C50A_D": {
66
+ "graphic": "FT800",
67
+ "touch": "focal",
68
+ "supportedDisplays": [ "WQVGA" ],
69
+ "supportedPlatforms": [ "*" ]
70
+ },
71
+
72
+ "ME812A_WH50R": {
73
+ "graphic": "FT812",
74
+ "touch": "",
75
+ "supportedDisplays": [ "WVGA" ],
76
+ "supportedPlatforms": [ "*" ]
77
+ },
78
+
79
+ "ME812AU_WH50R": {
80
+ "graphic": "FT812",
81
+ "touch": "resistive",
82
+ "supportedDisplays": [ "WVGA" ],
83
+ "supportedPlatforms": [ "*" ]
84
+ },
85
+
86
+ "ME813A_WH50C": {
87
+ "graphic": "FT813",
88
+ "touch": "",
89
+ "supportedDisplays": [ "WVGA" ],
90
+ "supportedPlatforms": [ "*" ]
91
+ },
92
+
93
+ "ME813AU_WH50C": {
94
+ "graphic": "FT813",
95
+ "touch": "focal",
96
+ "supportedDisplays": [ "WVGA" ],
97
+ "supportedPlatforms": [ "*" ]
98
+ },
99
+
100
+ "VM810C50A_D": {
101
+ "graphic": "FT810",
102
+ "touch": "resistive",
103
+ "supportedDisplays": [ "WVGA" ],
104
+ "supportedPlatforms": [ "*" ]
105
+ },
106
+
107
+ "VM810C50A_N": {
108
+ "graphic": "FT810",
109
+ "touch": "",
110
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
111
+ "supportedPlatforms": [ "*" ]
112
+ },
113
+
114
+ "ME810A_HV35R": {
115
+ "graphic": "FT810",
116
+ "touch": "",
117
+ "supportedDisplays": [ "ILI9488_HVGA_PORTRAIT" ],
118
+ "supportedPlatforms": [ "*" ]
119
+ },
120
+
121
+ "VM816C50A_D": {
122
+ "graphic": "BT816",
123
+ "touch": "resistive",
124
+ "supportedDisplays": [ "WVGA" ],
125
+ "supportedPlatforms": [ "*" ]
126
+ },
127
+
128
+ "VM816C50A_N": {
129
+ "graphic": "BT816",
130
+ "touch": "",
131
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
132
+ "supportedPlatforms": [ "*" ]
133
+ },
134
+
135
+ "VM816CU50A_D": {
136
+ "graphic": "BT816",
137
+ "touch": "resistive",
138
+ "supportedDisplays": [ "WVGA" ],
139
+ "supportedPlatforms": [ "*" ]
140
+ },
141
+
142
+ "VM816CU50A_N": {
143
+ "graphic": "BT816",
144
+ "touch": "",
145
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
146
+ "supportedPlatforms": [ "*" ]
147
+ },
148
+
149
+ "ME810AU_HV35R": {
150
+ "graphic": "FT810",
151
+ "touch": "resistive",
152
+ "supportedDisplays": [ "ILI9488_HVGA_PORTRAIT" ],
153
+ "supportedPlatforms": [ "*" ]
154
+ },
155
+
156
+ "ME813A_WV7C": {
157
+ "graphic": "FT813",
158
+ "touch": "",
159
+ "supportedDisplays": [ "WVGA" ],
160
+ "supportedPlatforms": [ "*" ]
161
+ },
162
+
163
+ "PANL35": {
164
+ "graphic": "FT811",
165
+ "touch": "",
166
+ "supportedDisplays": [ "KD2401_HVGA_PORTRAIT" ],
167
+ "supportedPlatforms": [ "*" ]
168
+ },
169
+
170
+ "PANL50": {
171
+ "graphic": "FT813",
172
+ "touch": "",
173
+ "supportedDisplays": [ "WVGA" ],
174
+ "supportedPlatforms": [ "*" ]
175
+ },
176
+
177
+ "PANL70": {
178
+ "graphic": "FT811",
179
+ "touch": "",
180
+ "supportedDisplays": [ "WVGA" ],
181
+ "supportedPlatforms": [ "*" ]
182
+ },
183
+
184
+ "PANL70PLUS": {
185
+ "graphic": "FT811",
186
+ "touch": "",
187
+ "supportedDisplays": [ "WVGA" ],
188
+ "supportedPlatforms": [ "*" ]
189
+ },
190
+
191
+ "EVE_GRAPHICS_VM800C": {
192
+ "graphic": "FT800",
193
+ "touch": "resistive",
194
+ "supportedDisplays": [ "WQVGA" ],
195
+ "supportedPlatforms": [ "*" ]
196
+ },
197
+
198
+ "EVE_GRAPHICS_VM810C": {
199
+ "graphic": "FT810",
200
+ "touch": "resistive",
201
+ "supportedDisplays": [ "WVGA" ],
202
+ "supportedPlatforms": [ "*" ]
203
+ },
204
+
205
+ "EVE_GRAPHICS_VM816C": {
206
+ "graphic": "BT816",
207
+ "touch": "resistive",
208
+ "supportedDisplays": [ "WVGA" ],
209
+ "supportedPlatforms": [ "*" ]
210
+ },
211
+
212
+ "EVE_GRAPHICS_ME817EV": {
213
+ "graphic": "BT817",
214
+ "touch": "focal",
215
+ "supportedDisplays": [ "WVGA" ],
216
+ "supportedPlatforms": [ "*" ]
217
+ },
218
+
219
+ "EVE_GRAPHICS_IDM2040": {
220
+ "graphic": "BT817",
221
+ "touch": "focal",
222
+ "supportedDisplays": [ "WVGA" ],
223
+ "supportedPlatforms": [ "EVE_PLATFORM_RP2040", "EVE_PLATFORM_MM2040EV" ]
224
+ },
225
+
226
+ "EVE_GRAPHICS_IDM2040_43A": {
227
+ "graphic": "BT883",
228
+ "touch": "goodix",
229
+ "supportedDisplays": [ "WQVGA" ],
230
+ "supportedPlatforms": [ "EVE_PLATFORM_RP2040", "EVE_PLATFORM_MM2040EV" ]
231
+ },
232
+
233
+ "EVE_GRAPHICS_FT800": {
234
+ "graphic": "FT800",
235
+ "touch": "resistive",
236
+ "supportedDisplays": [ "QVGA" ],
237
+ "supportedPlatforms": [ "*" ]
238
+ },
239
+
240
+ "EVE_GRAPHICS_FT801": {
241
+ "graphic": "FT801",
242
+ "touch": "",
243
+ "supportedDisplays": [ "QVGA", "WQVGA" ],
244
+ "supportedPlatforms": [ "*" ]
245
+ },
246
+
247
+ "EVE_GRAPHICS_FT810": {
248
+ "graphic": "FT810",
249
+ "touch": "resistive",
250
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
251
+ "supportedPlatforms": [ "*" ]
252
+ },
253
+
254
+ "EVE_GRAPHICS_FT811": {
255
+ "graphic": "FT811",
256
+ "touch": "",
257
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
258
+ "supportedPlatforms": [ "*" ]
259
+ },
260
+
261
+ "EVE_GRAPHICS_FT812": {
262
+ "graphic": "FT812",
263
+ "touch": "resistive",
264
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
265
+ "supportedPlatforms": [ "*" ]
266
+ },
267
+
268
+ "EVE_GRAPHICS_FT813": {
269
+ "graphic": "FT813",
270
+ "touch": "",
271
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
272
+ "supportedPlatforms": [ "*" ]
273
+ },
274
+
275
+ "EVE_GRAPHICS_BT880": {
276
+ "graphic": "BT880",
277
+ "touch": "resistive",
278
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
279
+ "supportedPlatforms": [ "*" ]
280
+ },
281
+
282
+ "EVE_GRAPHICS_BT881": {
283
+ "graphic": "BT881",
284
+ "touch": "",
285
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
286
+ "supportedPlatforms": [ "*" ]
287
+ },
288
+
289
+ "EVE_GRAPHICS_BT882": {
290
+ "graphic": "BT882",
291
+ "touch": "resistive",
292
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
293
+ "supportedPlatforms": [ "*" ]
294
+ },
295
+
296
+ "EVE_GRAPHICS_BT883": {
297
+ "graphic": "BT883",
298
+ "touch": "",
299
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
300
+ "supportedPlatforms": [ "*" ]
301
+ },
302
+
303
+ "EVE_GRAPHICS_BT815": {
304
+ "graphic": "BT815",
305
+ "touch": "focal",
306
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
307
+ "supportedPlatforms": [ "*" ]
308
+ },
309
+
310
+ "EVE_GRAPHICS_BT816": {
311
+ "graphic": "BT816",
312
+ "touch": "resistive",
313
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA" ],
314
+ "supportedPlatforms": [ "*" ]
315
+ },
316
+
317
+ "EVE_GRAPHICS_BT817": {
318
+ "graphic": "BT817",
319
+ "touch": "focal",
320
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA", "WSVGA", "WXGA" ],
321
+ "supportedPlatforms": [ "*" ]
322
+ },
323
+
324
+ "EVE_GRAPHICS_BT818": {
325
+ "graphic": "BT818",
326
+ "touch": "resistive",
327
+ "supportedDisplays": [ "QVGA", "WQVGA", "WVGA", "WSVGA", "WXGA" ],
328
+ "supportedPlatforms": [ "*" ]
329
+ }
330
+
331
+ }