eveapps-core 1.0.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 (160) hide show
  1. package/data/build_matrix.json +17 -0
  2. package/data/commands.json +8752 -0
  3. package/data/feature_graph.json +2446 -0
  4. package/data/registers.json +3312 -0
  5. package/data/samples.json +685 -0
  6. package/dist/context.d.ts +12 -0
  7. package/dist/context.js +33 -0
  8. package/dist/context.js.map +1 -0
  9. package/dist/data/build_matrix.json +17 -0
  10. package/dist/data/commands.json +8750 -0
  11. package/dist/data/data/build_matrix.json +17 -0
  12. package/dist/data/data/commands.json +8752 -0
  13. package/dist/data/data/feature_graph.json +2446 -0
  14. package/dist/data/data/registers.json +3312 -0
  15. package/dist/data/data/samples.json +685 -0
  16. package/dist/data/data/source_index.json +79 -0
  17. package/dist/data/feature_graph.json +2444 -0
  18. package/dist/data/registers.json +3312 -0
  19. package/dist/data/samples.json +685 -0
  20. package/dist/data/source_index.json +79 -0
  21. package/dist/index.d.ts +11 -0
  22. package/dist/index.js +12 -0
  23. package/dist/index.js.map +1 -0
  24. package/dist/lib/loadIndex.d.ts +14 -0
  25. package/dist/lib/loadIndex.js +27 -0
  26. package/dist/lib/loadIndex.js.map +1 -0
  27. package/dist/lib/normalize.d.ts +2 -0
  28. package/dist/lib/normalize.js +10 -0
  29. package/dist/lib/normalize.js.map +1 -0
  30. package/dist/lib/rank.d.ts +5 -0
  31. package/dist/lib/rank.js +38 -0
  32. package/dist/lib/rank.js.map +1 -0
  33. package/dist/lib/workspace.d.ts +4 -0
  34. package/dist/lib/workspace.js +5 -0
  35. package/dist/lib/workspace.js.map +1 -0
  36. package/dist/router/analyzeQuery.d.ts +9 -0
  37. package/dist/router/analyzeQuery.js +12 -0
  38. package/dist/router/analyzeQuery.js.map +1 -0
  39. package/dist/router/index.d.ts +5 -0
  40. package/dist/router/index.js +6 -0
  41. package/dist/router/index.js.map +1 -0
  42. package/dist/router/mergeResults.d.ts +2 -0
  43. package/dist/router/mergeResults.js +12 -0
  44. package/dist/router/mergeResults.js.map +1 -0
  45. package/dist/router/retrieveAnswer.d.ts +3 -0
  46. package/dist/router/retrieveAnswer.js +40 -0
  47. package/dist/router/retrieveAnswer.js.map +1 -0
  48. package/dist/router/routeQuery.d.ts +3 -0
  49. package/dist/router/routeQuery.js +33 -0
  50. package/dist/router/routeQuery.js.map +1 -0
  51. package/dist/router/types.d.ts +12 -0
  52. package/dist/router/types.js +2 -0
  53. package/dist/router/types.js.map +1 -0
  54. package/dist/search/searchCore.d.ts +3 -0
  55. package/dist/search/searchCore.js +64 -0
  56. package/dist/search/searchCore.js.map +1 -0
  57. package/dist/search/searchEveApps.d.ts +2 -0
  58. package/dist/search/searchEveApps.js +107 -0
  59. package/dist/search/searchEveApps.js.map +1 -0
  60. package/dist/search/searchSourceFiles.d.ts +6 -0
  61. package/dist/search/searchSourceFiles.js +49 -0
  62. package/dist/search/searchSourceFiles.js.map +1 -0
  63. package/dist/server.d.ts +1 -0
  64. package/dist/server.js +229 -0
  65. package/dist/server.js.map +1 -0
  66. package/dist/src/context.d.ts +12 -0
  67. package/dist/src/context.js +71 -0
  68. package/dist/src/context.js.map +1 -0
  69. package/dist/src/index.d.ts +10 -0
  70. package/dist/src/index.js +11 -0
  71. package/dist/src/index.js.map +1 -0
  72. package/dist/src/lib/loadIndex.d.ts +14 -0
  73. package/dist/src/lib/loadIndex.js +27 -0
  74. package/dist/src/lib/loadIndex.js.map +1 -0
  75. package/dist/src/lib/normalize.d.ts +2 -0
  76. package/dist/src/lib/normalize.js +10 -0
  77. package/dist/src/lib/normalize.js.map +1 -0
  78. package/dist/src/lib/rank.d.ts +5 -0
  79. package/dist/src/lib/rank.js +38 -0
  80. package/dist/src/lib/rank.js.map +1 -0
  81. package/dist/src/lib/workspace.d.ts +4 -0
  82. package/dist/src/lib/workspace.js +5 -0
  83. package/dist/src/lib/workspace.js.map +1 -0
  84. package/dist/src/router/analyzeQuery.d.ts +9 -0
  85. package/dist/src/router/analyzeQuery.js +12 -0
  86. package/dist/src/router/analyzeQuery.js.map +1 -0
  87. package/dist/src/router/index.d.ts +5 -0
  88. package/dist/src/router/index.js +6 -0
  89. package/dist/src/router/index.js.map +1 -0
  90. package/dist/src/router/mergeResults.d.ts +2 -0
  91. package/dist/src/router/mergeResults.js +12 -0
  92. package/dist/src/router/mergeResults.js.map +1 -0
  93. package/dist/src/router/retrieveAnswer.d.ts +3 -0
  94. package/dist/src/router/retrieveAnswer.js +64 -0
  95. package/dist/src/router/retrieveAnswer.js.map +1 -0
  96. package/dist/src/router/routeQuery.d.ts +3 -0
  97. package/dist/src/router/routeQuery.js +33 -0
  98. package/dist/src/router/routeQuery.js.map +1 -0
  99. package/dist/src/router/types.d.ts +12 -0
  100. package/dist/src/router/types.js +2 -0
  101. package/dist/src/router/types.js.map +1 -0
  102. package/dist/src/search/searchCore.d.ts +3 -0
  103. package/dist/src/search/searchCore.js +64 -0
  104. package/dist/src/search/searchCore.js.map +1 -0
  105. package/dist/src/search/searchEveApps.d.ts +2 -0
  106. package/dist/src/search/searchEveApps.js +107 -0
  107. package/dist/src/search/searchEveApps.js.map +1 -0
  108. package/dist/src/search/searchSourceFiles.d.ts +6 -0
  109. package/dist/src/search/searchSourceFiles.js +49 -0
  110. package/dist/src/search/searchSourceFiles.js.map +1 -0
  111. package/dist/src/server.d.ts +1 -0
  112. package/dist/src/server.js +214 -0
  113. package/dist/src/server.js.map +1 -0
  114. package/dist/src/tools/explainEveSymbol.d.ts +56 -0
  115. package/dist/src/tools/explainEveSymbol.js +54 -0
  116. package/dist/src/tools/explainEveSymbol.js.map +1 -0
  117. package/dist/src/tools/findRelevantSample.d.ts +34 -0
  118. package/dist/src/tools/findRelevantSample.js +33 -0
  119. package/dist/src/tools/findRelevantSample.js.map +1 -0
  120. package/dist/src/tools/generateBuildCommand.d.ts +34 -0
  121. package/dist/src/tools/generateBuildCommand.js +54 -0
  122. package/dist/src/tools/generateBuildCommand.js.map +1 -0
  123. package/dist/src/tools/generateScreenScaffold.d.ts +32 -0
  124. package/dist/src/tools/generateScreenScaffold.js +73 -0
  125. package/dist/src/tools/generateScreenScaffold.js.map +1 -0
  126. package/dist/src/tools/traceFeatureToCommands.d.ts +36 -0
  127. package/dist/src/tools/traceFeatureToCommands.js +84 -0
  128. package/dist/src/tools/traceFeatureToCommands.js.map +1 -0
  129. package/dist/src/tools/validateBt820Code.d.ts +28 -0
  130. package/dist/src/tools/validateBt820Code.js +45 -0
  131. package/dist/src/tools/validateBt820Code.js.map +1 -0
  132. package/dist/src/types.d.ts +44 -0
  133. package/dist/src/types.js +2 -0
  134. package/dist/src/types.js.map +1 -0
  135. package/dist/tools/explainEveSymbol.d.ts +56 -0
  136. package/dist/tools/explainEveSymbol.js +54 -0
  137. package/dist/tools/explainEveSymbol.js.map +1 -0
  138. package/dist/tools/findRelevantSample.d.ts +34 -0
  139. package/dist/tools/findRelevantSample.js +33 -0
  140. package/dist/tools/findRelevantSample.js.map +1 -0
  141. package/dist/tools/generateBuildCommand.d.ts +34 -0
  142. package/dist/tools/generateBuildCommand.js +54 -0
  143. package/dist/tools/generateBuildCommand.js.map +1 -0
  144. package/dist/tools/generateScreenScaffold.d.ts +32 -0
  145. package/dist/tools/generateScreenScaffold.js +73 -0
  146. package/dist/tools/generateScreenScaffold.js.map +1 -0
  147. package/dist/tools/readSourceFile.d.ts +15 -0
  148. package/dist/tools/readSourceFile.js +26 -0
  149. package/dist/tools/readSourceFile.js.map +1 -0
  150. package/dist/tools/traceFeatureToCommands.d.ts +36 -0
  151. package/dist/tools/traceFeatureToCommands.js +84 -0
  152. package/dist/tools/traceFeatureToCommands.js.map +1 -0
  153. package/dist/tools/validateBt820Code.d.ts +28 -0
  154. package/dist/tools/validateBt820Code.js +45 -0
  155. package/dist/tools/validateBt820Code.js.map +1 -0
  156. package/dist/tsconfig.tsbuildinfo +1 -0
  157. package/dist/types.d.ts +44 -0
  158. package/dist/types.js +2 -0
  159. package/dist/types.js.map +1 -0
  160. package/package.json +27 -0
@@ -0,0 +1,2446 @@
1
+ {
2
+ "text": {
3
+ "commands": [
4
+ {
5
+ "name": "Draw_Text",
6
+ "type": "helper",
7
+ "level": "high",
8
+ "weight": 10
9
+ },
10
+ {
11
+ "name": "Draw_TextColor",
12
+ "type": "helper",
13
+ "level": "high",
14
+ "weight": 10
15
+ },
16
+ {
17
+ "name": "EVE_CoCmd_button",
18
+ "type": "coprocessor",
19
+ "level": "high",
20
+ "weight": 8
21
+ },
22
+ {
23
+ "name": "EVE_CoCmd_fillWidth",
24
+ "type": "coprocessor",
25
+ "level": "high",
26
+ "weight": 8
27
+ },
28
+ {
29
+ "name": "EVE_CoCmd_glow",
30
+ "type": "coprocessor",
31
+ "level": "high",
32
+ "weight": 8
33
+ },
34
+ {
35
+ "name": "EVE_CoCmd_keys",
36
+ "type": "coprocessor",
37
+ "level": "high",
38
+ "weight": 8
39
+ },
40
+ {
41
+ "name": "EVE_CoCmd_number",
42
+ "type": "coprocessor",
43
+ "level": "high",
44
+ "weight": 8
45
+ },
46
+ {
47
+ "name": "EVE_CoCmd_resetFonts",
48
+ "type": "coprocessor",
49
+ "level": "high",
50
+ "weight": 8
51
+ },
52
+ {
53
+ "name": "EVE_CoCmd_romFont",
54
+ "type": "coprocessor",
55
+ "level": "high",
56
+ "weight": 8
57
+ },
58
+ {
59
+ "name": "EVE_CoCmd_setBase",
60
+ "type": "coprocessor",
61
+ "level": "high",
62
+ "weight": 8
63
+ },
64
+ {
65
+ "name": "EVE_CoCmd_setFont",
66
+ "type": "coprocessor",
67
+ "level": "high",
68
+ "weight": 8
69
+ },
70
+ {
71
+ "name": "EVE_CoCmd_text",
72
+ "type": "coprocessor",
73
+ "level": "high",
74
+ "weight": 8
75
+ },
76
+ {
77
+ "name": "EVE_CoCmd_text_s",
78
+ "type": "coprocessor",
79
+ "level": "high",
80
+ "weight": 8
81
+ },
82
+ {
83
+ "name": "EVE_CoDl_colorA",
84
+ "type": "display_list",
85
+ "level": "high",
86
+ "weight": 8
87
+ },
88
+ {
89
+ "name": "EVE_CoDl_colorRgb_ex",
90
+ "type": "display_list",
91
+ "level": "high",
92
+ "weight": 8
93
+ },
94
+ {
95
+ "name": "EVE_CoDl_colorRgb",
96
+ "type": "display_list",
97
+ "level": "high",
98
+ "weight": 8
99
+ },
100
+ {
101
+ "name": "EVE_CoDl_colorArgb_ex",
102
+ "type": "display_list",
103
+ "level": "high",
104
+ "weight": 8
105
+ }
106
+ ],
107
+ "samples": [
108
+ "sampleapp_animation",
109
+ "sampleapp_audio",
110
+ "sampleapp_bitmap",
111
+ "sampleapp_extension",
112
+ "sampleapp_flash",
113
+ "sampleapp_font",
114
+ "sampleapp_lvdsrx",
115
+ "sampleapp_primitives",
116
+ "sampleapp_touch",
117
+ "sampleapp_utility",
118
+ "sampleapp_video",
119
+ "sampleapp_widget"
120
+ ],
121
+ "keywords": [
122
+ "text",
123
+ "draw_text",
124
+ "draw_textcolor"
125
+ ],
126
+ "registers": [
127
+ "CMD_TEXT",
128
+ "CMD_TEXTDIM"
129
+ ]
130
+ },
131
+ "ui": {
132
+ "commands": [
133
+ {
134
+ "name": "Draw_Text",
135
+ "type": "helper",
136
+ "level": "high",
137
+ "weight": 10
138
+ },
139
+ {
140
+ "name": "Draw_TextColor",
141
+ "type": "helper",
142
+ "level": "high",
143
+ "weight": 10
144
+ },
145
+ {
146
+ "name": "EVE_CoCmd_animDraw",
147
+ "type": "coprocessor",
148
+ "level": "high",
149
+ "weight": 8
150
+ },
151
+ {
152
+ "name": "EVE_CoCmd_animFrame",
153
+ "type": "coprocessor",
154
+ "level": "high",
155
+ "weight": 8
156
+ },
157
+ {
158
+ "name": "EVE_CoCmd_animStart",
159
+ "type": "coprocessor",
160
+ "level": "high",
161
+ "weight": 8
162
+ },
163
+ {
164
+ "name": "EVE_CoCmd_animStop",
165
+ "type": "coprocessor",
166
+ "level": "high",
167
+ "weight": 8
168
+ },
169
+ {
170
+ "name": "EVE_CoCmd_animXY",
171
+ "type": "coprocessor",
172
+ "level": "high",
173
+ "weight": 8
174
+ },
175
+ {
176
+ "name": "EVE_CoCmd_arc",
177
+ "type": "coprocessor",
178
+ "level": "high",
179
+ "weight": 8
180
+ },
181
+ {
182
+ "name": "EVE_CoCmd_bgColor",
183
+ "type": "coprocessor",
184
+ "level": "high",
185
+ "weight": 8
186
+ },
187
+ {
188
+ "name": "EVE_CoCmd_button",
189
+ "type": "coprocessor",
190
+ "level": "high",
191
+ "weight": 8
192
+ },
193
+ {
194
+ "name": "EVE_CoCmd_calibrate",
195
+ "type": "coprocessor",
196
+ "level": "high",
197
+ "weight": 8
198
+ },
199
+ {
200
+ "name": "EVE_CoCmd_calibrateSub",
201
+ "type": "coprocessor",
202
+ "level": "high",
203
+ "weight": 8
204
+ },
205
+ {
206
+ "name": "EVE_CoCmd_cgradient",
207
+ "type": "coprocessor",
208
+ "level": "high",
209
+ "weight": 8
210
+ },
211
+ {
212
+ "name": "EVE_CoCmd_clock",
213
+ "type": "coprocessor",
214
+ "level": "high",
215
+ "weight": 8
216
+ },
217
+ {
218
+ "name": "EVE_CoCmd_dial",
219
+ "type": "coprocessor",
220
+ "level": "high",
221
+ "weight": 8
222
+ },
223
+ {
224
+ "name": "EVE_CoCmd_fgColor",
225
+ "type": "coprocessor",
226
+ "level": "high",
227
+ "weight": 8
228
+ },
229
+ {
230
+ "name": "EVE_CoCmd_gauge",
231
+ "type": "coprocessor",
232
+ "level": "high",
233
+ "weight": 8
234
+ },
235
+ {
236
+ "name": "EVE_CoCmd_glow",
237
+ "type": "coprocessor",
238
+ "level": "high",
239
+ "weight": 8
240
+ },
241
+ {
242
+ "name": "EVE_CoCmd_gradColor",
243
+ "type": "coprocessor",
244
+ "level": "high",
245
+ "weight": 8
246
+ },
247
+ {
248
+ "name": "EVE_CoCmd_gradient",
249
+ "type": "coprocessor",
250
+ "level": "high",
251
+ "weight": 8
252
+ },
253
+ {
254
+ "name": "EVE_CoCmd_gradientA",
255
+ "type": "coprocessor",
256
+ "level": "high",
257
+ "weight": 8
258
+ },
259
+ {
260
+ "name": "EVE_CoCmd_keys",
261
+ "type": "coprocessor",
262
+ "level": "high",
263
+ "weight": 8
264
+ },
265
+ {
266
+ "name": "EVE_CoCmd_logo",
267
+ "type": "coprocessor",
268
+ "level": "high",
269
+ "weight": 8
270
+ },
271
+ {
272
+ "name": "EVE_CoCmd_number",
273
+ "type": "coprocessor",
274
+ "level": "high",
275
+ "weight": 8
276
+ },
277
+ {
278
+ "name": "EVE_CoCmd_playVideo",
279
+ "type": "coprocessor",
280
+ "level": "high",
281
+ "weight": 8
282
+ },
283
+ {
284
+ "name": "EVE_CoCmd_progress",
285
+ "type": "coprocessor",
286
+ "level": "high",
287
+ "weight": 8
288
+ },
289
+ {
290
+ "name": "EVE_CoCmd_runAnim",
291
+ "type": "coprocessor",
292
+ "level": "high",
293
+ "weight": 8
294
+ },
295
+ {
296
+ "name": "EVE_CoCmd_screenSaver",
297
+ "type": "coprocessor",
298
+ "level": "high",
299
+ "weight": 8
300
+ },
301
+ {
302
+ "name": "EVE_CoCmd_scrollbar",
303
+ "type": "coprocessor",
304
+ "level": "high",
305
+ "weight": 8
306
+ },
307
+ {
308
+ "name": "EVE_CoCmd_setScratch",
309
+ "type": "coprocessor",
310
+ "level": "high",
311
+ "weight": 8
312
+ },
313
+ {
314
+ "name": "EVE_CoCmd_sketch",
315
+ "type": "coprocessor",
316
+ "level": "high",
317
+ "weight": 8
318
+ },
319
+ {
320
+ "name": "EVE_CoCmd_slider",
321
+ "type": "coprocessor",
322
+ "level": "high",
323
+ "weight": 8
324
+ },
325
+ {
326
+ "name": "EVE_CoCmd_spinner",
327
+ "type": "coprocessor",
328
+ "level": "high",
329
+ "weight": 8
330
+ },
331
+ {
332
+ "name": "EVE_CoCmd_testCard",
333
+ "type": "coprocessor",
334
+ "level": "high",
335
+ "weight": 8
336
+ },
337
+ {
338
+ "name": "EVE_CoCmd_text",
339
+ "type": "coprocessor",
340
+ "level": "high",
341
+ "weight": 8
342
+ },
343
+ {
344
+ "name": "EVE_CoCmd_text_s",
345
+ "type": "coprocessor",
346
+ "level": "high",
347
+ "weight": 8
348
+ },
349
+ {
350
+ "name": "EVE_CoCmd_toggle",
351
+ "type": "coprocessor",
352
+ "level": "high",
353
+ "weight": 8
354
+ },
355
+ {
356
+ "name": "EVE_CoCmd_videoFrame",
357
+ "type": "coprocessor",
358
+ "level": "high",
359
+ "weight": 8
360
+ },
361
+ {
362
+ "name": "EVE_CoCmd_videoStart",
363
+ "type": "coprocessor",
364
+ "level": "high",
365
+ "weight": 8
366
+ },
367
+ {
368
+ "name": "EVE_CoDl_vertexFormat",
369
+ "type": "display_list",
370
+ "level": "high",
371
+ "weight": 8
372
+ },
373
+ {
374
+ "name": "EVE_CoDl_vertex2f",
375
+ "type": "display_list",
376
+ "level": "high",
377
+ "weight": 8
378
+ },
379
+ {
380
+ "name": "EVE_CoDl_vertex2ii",
381
+ "type": "display_list",
382
+ "level": "high",
383
+ "weight": 8
384
+ }
385
+ ],
386
+ "samples": [
387
+ "sampleapp_animation",
388
+ "sampleapp_audio",
389
+ "sampleapp_bitmap",
390
+ "sampleapp_extension",
391
+ "sampleapp_flash",
392
+ "sampleapp_font",
393
+ "sampleapp_lvdsrx",
394
+ "sampleapp_primitives",
395
+ "sampleapp_touch",
396
+ "sampleapp_utility",
397
+ "sampleapp_video",
398
+ "sampleapp_widget"
399
+ ],
400
+ "keywords": [
401
+ "widget",
402
+ "video",
403
+ "animation",
404
+ "bitmap",
405
+ "text"
406
+ ],
407
+ "registers": []
408
+ },
409
+ "label": {
410
+ "commands": [
411
+ {
412
+ "name": "Draw_Text",
413
+ "type": "helper",
414
+ "level": "high",
415
+ "weight": 10
416
+ },
417
+ {
418
+ "name": "Draw_TextColor",
419
+ "type": "helper",
420
+ "level": "high",
421
+ "weight": 10
422
+ },
423
+ {
424
+ "name": "EVE_CoCmd_setFont",
425
+ "type": "coprocessor",
426
+ "level": "high",
427
+ "weight": 8
428
+ },
429
+ {
430
+ "name": "EVE_CoCmd_text",
431
+ "type": "coprocessor",
432
+ "level": "high",
433
+ "weight": 8
434
+ },
435
+ {
436
+ "name": "EVE_CoCmd_text_s",
437
+ "type": "coprocessor",
438
+ "level": "high",
439
+ "weight": 8
440
+ },
441
+ {
442
+ "name": "EVE_CoDl_colorA",
443
+ "type": "display_list",
444
+ "level": "high",
445
+ "weight": 8
446
+ },
447
+ {
448
+ "name": "EVE_CoDl_colorRgb_ex",
449
+ "type": "display_list",
450
+ "level": "high",
451
+ "weight": 8
452
+ },
453
+ {
454
+ "name": "EVE_CoDl_colorRgb",
455
+ "type": "display_list",
456
+ "level": "high",
457
+ "weight": 8
458
+ },
459
+ {
460
+ "name": "EVE_CoDl_colorArgb_ex",
461
+ "type": "display_list",
462
+ "level": "high",
463
+ "weight": 8
464
+ },
465
+ {
466
+ "name": "EVE_CoDl_vertexFormat",
467
+ "type": "display_list",
468
+ "level": "high",
469
+ "weight": 8
470
+ },
471
+ {
472
+ "name": "EVE_CoDl_vertex2f",
473
+ "type": "display_list",
474
+ "level": "high",
475
+ "weight": 8
476
+ },
477
+ {
478
+ "name": "EVE_CoDl_vertex2ii",
479
+ "type": "display_list",
480
+ "level": "high",
481
+ "weight": 8
482
+ }
483
+ ],
484
+ "samples": [
485
+ "sampleapp_animation",
486
+ "sampleapp_audio",
487
+ "sampleapp_bitmap",
488
+ "sampleapp_extension",
489
+ "sampleapp_flash",
490
+ "sampleapp_font",
491
+ "sampleapp_lvdsrx",
492
+ "sampleapp_primitives",
493
+ "sampleapp_touch",
494
+ "sampleapp_utility",
495
+ "sampleapp_video",
496
+ "sampleapp_widget"
497
+ ],
498
+ "keywords": [
499
+ "text",
500
+ "draw_text",
501
+ "draw_textcolor"
502
+ ],
503
+ "registers": []
504
+ },
505
+ "motion": {
506
+ "commands": [
507
+ {
508
+ "name": "EVE_CoCmd_animDraw",
509
+ "type": "coprocessor",
510
+ "level": "high",
511
+ "weight": 8
512
+ },
513
+ {
514
+ "name": "EVE_CoCmd_animFrame",
515
+ "type": "coprocessor",
516
+ "level": "high",
517
+ "weight": 8
518
+ },
519
+ {
520
+ "name": "EVE_CoCmd_animStart",
521
+ "type": "coprocessor",
522
+ "level": "high",
523
+ "weight": 8
524
+ },
525
+ {
526
+ "name": "EVE_CoCmd_animStop",
527
+ "type": "coprocessor",
528
+ "level": "high",
529
+ "weight": 8
530
+ },
531
+ {
532
+ "name": "EVE_CoCmd_animXY",
533
+ "type": "coprocessor",
534
+ "level": "high",
535
+ "weight": 8
536
+ },
537
+ {
538
+ "name": "EVE_CoCmd_runAnim",
539
+ "type": "coprocessor",
540
+ "level": "high",
541
+ "weight": 8
542
+ }
543
+ ],
544
+ "samples": [
545
+ "sampleapp_animation"
546
+ ],
547
+ "keywords": [
548
+ "anim",
549
+ "animation",
550
+ "file",
551
+ "flash",
552
+ "sdcard",
553
+ "motion",
554
+ "sampleapp",
555
+ "src"
556
+ ],
557
+ "registers": []
558
+ },
559
+ "animation": {
560
+ "commands": [
561
+ {
562
+ "name": "EVE_CoCmd_animDraw",
563
+ "type": "coprocessor",
564
+ "level": "high",
565
+ "weight": 8
566
+ },
567
+ {
568
+ "name": "EVE_CoCmd_animFrame",
569
+ "type": "coprocessor",
570
+ "level": "high",
571
+ "weight": 8
572
+ },
573
+ {
574
+ "name": "EVE_CoCmd_animStart",
575
+ "type": "coprocessor",
576
+ "level": "high",
577
+ "weight": 8
578
+ },
579
+ {
580
+ "name": "EVE_CoCmd_animStop",
581
+ "type": "coprocessor",
582
+ "level": "high",
583
+ "weight": 8
584
+ },
585
+ {
586
+ "name": "EVE_CoCmd_animXY",
587
+ "type": "coprocessor",
588
+ "level": "high",
589
+ "weight": 8
590
+ },
591
+ {
592
+ "name": "EVE_CoCmd_runAnim",
593
+ "type": "coprocessor",
594
+ "level": "high",
595
+ "weight": 8
596
+ }
597
+ ],
598
+ "samples": [
599
+ "sampleapp_animation"
600
+ ],
601
+ "keywords": [
602
+ "anim",
603
+ "animation",
604
+ "file",
605
+ "flash",
606
+ "sdcard",
607
+ "motion",
608
+ "reg_anim_active",
609
+ "sampleapp",
610
+ "src"
611
+ ],
612
+ "registers": [
613
+ "REG_ANIM_ACTIVE"
614
+ ]
615
+ },
616
+ "flash": {
617
+ "commands": [
618
+ {
619
+ "name": "Flash_Init",
620
+ "type": "helper",
621
+ "level": "high",
622
+ "weight": 10
623
+ },
624
+ {
625
+ "name": "FlashHelper_Erase",
626
+ "type": "helper",
627
+ "level": "high",
628
+ "weight": 10
629
+ },
630
+ {
631
+ "name": "FlashHelper_EraseBlocks",
632
+ "type": "helper",
633
+ "level": "high",
634
+ "weight": 10
635
+ },
636
+ {
637
+ "name": "FlashHelper_GetAddrAvail",
638
+ "type": "helper",
639
+ "level": "high",
640
+ "weight": 10
641
+ },
642
+ {
643
+ "name": "FlashHelper_GetBadBlockNum",
644
+ "type": "helper",
645
+ "level": "high",
646
+ "weight": 10
647
+ },
648
+ {
649
+ "name": "FlashHelper_GetState",
650
+ "type": "helper",
651
+ "level": "high",
652
+ "weight": 10
653
+ },
654
+ {
655
+ "name": "FlashHelper_Program",
656
+ "type": "helper",
657
+ "level": "high",
658
+ "weight": 10
659
+ },
660
+ {
661
+ "name": "FlashHelper_Read",
662
+ "type": "helper",
663
+ "level": "high",
664
+ "weight": 10
665
+ },
666
+ {
667
+ "name": "FlashHelper_SwitchFullMode",
668
+ "type": "helper",
669
+ "level": "high",
670
+ "weight": 10
671
+ },
672
+ {
673
+ "name": "FlashHelper_SwitchState",
674
+ "type": "helper",
675
+ "level": "high",
676
+ "weight": 10
677
+ },
678
+ {
679
+ "name": "FlashHelper_Write",
680
+ "type": "helper",
681
+ "level": "high",
682
+ "weight": 10
683
+ },
684
+ {
685
+ "name": "EVE_CoCmd_flashAttach",
686
+ "type": "coprocessor",
687
+ "level": "high",
688
+ "weight": 8
689
+ },
690
+ {
691
+ "name": "EVE_CoCmd_flashDetach",
692
+ "type": "coprocessor",
693
+ "level": "high",
694
+ "weight": 8
695
+ },
696
+ {
697
+ "name": "EVE_CoCmd_flashErase",
698
+ "type": "coprocessor",
699
+ "level": "high",
700
+ "weight": 8
701
+ },
702
+ {
703
+ "name": "EVE_CoCmd_flashFast",
704
+ "type": "coprocessor",
705
+ "level": "high",
706
+ "weight": 8
707
+ },
708
+ {
709
+ "name": "EVE_CoCmd_flashProgram",
710
+ "type": "coprocessor",
711
+ "level": "high",
712
+ "weight": 8
713
+ },
714
+ {
715
+ "name": "EVE_CoCmd_flashRead",
716
+ "type": "coprocessor",
717
+ "level": "high",
718
+ "weight": 8
719
+ },
720
+ {
721
+ "name": "EVE_CoCmd_flashRead_flush",
722
+ "type": "coprocessor",
723
+ "level": "high",
724
+ "weight": 8
725
+ },
726
+ {
727
+ "name": "EVE_CoCmd_flashSource",
728
+ "type": "coprocessor",
729
+ "level": "high",
730
+ "weight": 8
731
+ },
732
+ {
733
+ "name": "EVE_CoCmd_flashSpiDesel",
734
+ "type": "coprocessor",
735
+ "level": "high",
736
+ "weight": 8
737
+ },
738
+ {
739
+ "name": "EVE_CoCmd_flashSpiRx",
740
+ "type": "coprocessor",
741
+ "level": "high",
742
+ "weight": 8
743
+ },
744
+ {
745
+ "name": "EVE_CoCmd_flashSpiTx",
746
+ "type": "coprocessor",
747
+ "level": "high",
748
+ "weight": 8
749
+ },
750
+ {
751
+ "name": "EVE_CoCmd_flashUpdate",
752
+ "type": "coprocessor",
753
+ "level": "high",
754
+ "weight": 8
755
+ },
756
+ {
757
+ "name": "EVE_CoCmd_flashWrite",
758
+ "type": "coprocessor",
759
+ "level": "high",
760
+ "weight": 8
761
+ }
762
+ ],
763
+ "samples": [
764
+ "sampleapp_animation",
765
+ "sampleapp_audio",
766
+ "sampleapp_bitmap",
767
+ "sampleapp_flash",
768
+ "sampleapp_font",
769
+ "sampleapp_utility",
770
+ "sampleapp_video"
771
+ ],
772
+ "keywords": [
773
+ "anim",
774
+ "animation",
775
+ "motion",
776
+ "asset",
777
+ "assets",
778
+ "audio",
779
+ "bitmap",
780
+ "video",
781
+ "font",
782
+ "file",
783
+ "flash"
784
+ ],
785
+ "registers": [
786
+ "REG_FLASH_SIZE",
787
+ "REG_FLASH_STATUS"
788
+ ]
789
+ },
790
+ "storage": {
791
+ "commands": [
792
+ {
793
+ "name": "Flash_Init",
794
+ "type": "helper",
795
+ "level": "high",
796
+ "weight": 10
797
+ },
798
+ {
799
+ "name": "FlashHelper_Erase",
800
+ "type": "helper",
801
+ "level": "high",
802
+ "weight": 10
803
+ },
804
+ {
805
+ "name": "FlashHelper_EraseBlocks",
806
+ "type": "helper",
807
+ "level": "high",
808
+ "weight": 10
809
+ },
810
+ {
811
+ "name": "FlashHelper_GetAddrAvail",
812
+ "type": "helper",
813
+ "level": "high",
814
+ "weight": 10
815
+ },
816
+ {
817
+ "name": "FlashHelper_GetBadBlockNum",
818
+ "type": "helper",
819
+ "level": "high",
820
+ "weight": 10
821
+ },
822
+ {
823
+ "name": "FlashHelper_GetState",
824
+ "type": "helper",
825
+ "level": "high",
826
+ "weight": 10
827
+ },
828
+ {
829
+ "name": "FlashHelper_Program",
830
+ "type": "helper",
831
+ "level": "high",
832
+ "weight": 10
833
+ },
834
+ {
835
+ "name": "FlashHelper_Read",
836
+ "type": "helper",
837
+ "level": "high",
838
+ "weight": 10
839
+ },
840
+ {
841
+ "name": "FlashHelper_SwitchFullMode",
842
+ "type": "helper",
843
+ "level": "high",
844
+ "weight": 10
845
+ },
846
+ {
847
+ "name": "FlashHelper_SwitchState",
848
+ "type": "helper",
849
+ "level": "high",
850
+ "weight": 10
851
+ },
852
+ {
853
+ "name": "FlashHelper_Write",
854
+ "type": "helper",
855
+ "level": "high",
856
+ "weight": 10
857
+ },
858
+ {
859
+ "name": "EVE_CoCmd_flashAttach",
860
+ "type": "coprocessor",
861
+ "level": "high",
862
+ "weight": 8
863
+ },
864
+ {
865
+ "name": "EVE_CoCmd_flashDetach",
866
+ "type": "coprocessor",
867
+ "level": "high",
868
+ "weight": 8
869
+ },
870
+ {
871
+ "name": "EVE_CoCmd_flashErase",
872
+ "type": "coprocessor",
873
+ "level": "high",
874
+ "weight": 8
875
+ },
876
+ {
877
+ "name": "EVE_CoCmd_flashFast",
878
+ "type": "coprocessor",
879
+ "level": "high",
880
+ "weight": 8
881
+ },
882
+ {
883
+ "name": "EVE_CoCmd_flashProgram",
884
+ "type": "coprocessor",
885
+ "level": "high",
886
+ "weight": 8
887
+ },
888
+ {
889
+ "name": "EVE_CoCmd_flashRead",
890
+ "type": "coprocessor",
891
+ "level": "high",
892
+ "weight": 8
893
+ },
894
+ {
895
+ "name": "EVE_CoCmd_flashRead_flush",
896
+ "type": "coprocessor",
897
+ "level": "high",
898
+ "weight": 8
899
+ },
900
+ {
901
+ "name": "EVE_CoCmd_flashSource",
902
+ "type": "coprocessor",
903
+ "level": "high",
904
+ "weight": 8
905
+ },
906
+ {
907
+ "name": "EVE_CoCmd_flashSpiDesel",
908
+ "type": "coprocessor",
909
+ "level": "high",
910
+ "weight": 8
911
+ },
912
+ {
913
+ "name": "EVE_CoCmd_flashSpiRx",
914
+ "type": "coprocessor",
915
+ "level": "high",
916
+ "weight": 8
917
+ },
918
+ {
919
+ "name": "EVE_CoCmd_flashSpiTx",
920
+ "type": "coprocessor",
921
+ "level": "high",
922
+ "weight": 8
923
+ },
924
+ {
925
+ "name": "EVE_CoCmd_flashUpdate",
926
+ "type": "coprocessor",
927
+ "level": "high",
928
+ "weight": 8
929
+ },
930
+ {
931
+ "name": "EVE_CoCmd_flashWrite",
932
+ "type": "coprocessor",
933
+ "level": "high",
934
+ "weight": 8
935
+ },
936
+ {
937
+ "name": "EVE_CoCmd_sdAttach",
938
+ "type": "coprocessor",
939
+ "level": "high",
940
+ "weight": 8
941
+ },
942
+ {
943
+ "name": "EVE_CoCmd_sdBlockread",
944
+ "type": "coprocessor",
945
+ "level": "high",
946
+ "weight": 8
947
+ },
948
+ {
949
+ "name": "EVE_CoCmd_fsRead",
950
+ "type": "coprocessor",
951
+ "level": "high",
952
+ "weight": 8
953
+ },
954
+ {
955
+ "name": "EVE_CoCmd_fsSource",
956
+ "type": "coprocessor",
957
+ "level": "high",
958
+ "weight": 8
959
+ },
960
+ {
961
+ "name": "EVE_CoCmd_fsSize",
962
+ "type": "coprocessor",
963
+ "level": "high",
964
+ "weight": 8
965
+ },
966
+ {
967
+ "name": "EVE_CoCmd_fsOption",
968
+ "type": "coprocessor",
969
+ "level": "high",
970
+ "weight": 8
971
+ },
972
+ {
973
+ "name": "EVE_CoCmd_fsRead",
974
+ "type": "coprocessor",
975
+ "level": "high",
976
+ "weight": 8
977
+ },
978
+ {
979
+ "name": "EVE_CoCmd_fsDir",
980
+ "type": "coprocessor",
981
+ "level": "high",
982
+ "weight": 8
983
+ }
984
+ ],
985
+ "samples": [
986
+ "sampleapp_animation",
987
+ "sampleapp_audio",
988
+ "sampleapp_bitmap",
989
+ "sampleapp_flash",
990
+ "sampleapp_font",
991
+ "sampleapp_utility",
992
+ "sampleapp_video"
993
+ ],
994
+ "keywords": [
995
+ "anim",
996
+ "animation",
997
+ "asset",
998
+ "audio",
999
+ "bitmap",
1000
+ "file",
1001
+ "flash",
1002
+ "sdcard",
1003
+ "font",
1004
+ "motion",
1005
+ "sampleapp",
1006
+ "src",
1007
+ "storage"
1008
+ ],
1009
+ "registers": []
1010
+ },
1011
+ "asset": {
1012
+ "commands": [
1013
+ {
1014
+ "name": "Flash_Init",
1015
+ "type": "helper",
1016
+ "level": "high",
1017
+ "weight": 10
1018
+ },
1019
+ {
1020
+ "name": "FlashHelper_Erase",
1021
+ "type": "helper",
1022
+ "level": "high",
1023
+ "weight": 10
1024
+ },
1025
+ {
1026
+ "name": "FlashHelper_EraseBlocks",
1027
+ "type": "helper",
1028
+ "level": "high",
1029
+ "weight": 10
1030
+ },
1031
+ {
1032
+ "name": "FlashHelper_GetAddrAvail",
1033
+ "type": "helper",
1034
+ "level": "high",
1035
+ "weight": 10
1036
+ },
1037
+ {
1038
+ "name": "FlashHelper_GetBadBlockNum",
1039
+ "type": "helper",
1040
+ "level": "high",
1041
+ "weight": 10
1042
+ },
1043
+ {
1044
+ "name": "FlashHelper_GetState",
1045
+ "type": "helper",
1046
+ "level": "high",
1047
+ "weight": 10
1048
+ },
1049
+ {
1050
+ "name": "FlashHelper_Program",
1051
+ "type": "helper",
1052
+ "level": "high",
1053
+ "weight": 10
1054
+ },
1055
+ {
1056
+ "name": "FlashHelper_Read",
1057
+ "type": "helper",
1058
+ "level": "high",
1059
+ "weight": 10
1060
+ },
1061
+ {
1062
+ "name": "FlashHelper_SwitchFullMode",
1063
+ "type": "helper",
1064
+ "level": "high",
1065
+ "weight": 10
1066
+ },
1067
+ {
1068
+ "name": "FlashHelper_SwitchState",
1069
+ "type": "helper",
1070
+ "level": "high",
1071
+ "weight": 10
1072
+ },
1073
+ {
1074
+ "name": "FlashHelper_Write",
1075
+ "type": "helper",
1076
+ "level": "high",
1077
+ "weight": 10
1078
+ },
1079
+ {
1080
+ "name": "EVE_CoCmd_animFrame",
1081
+ "type": "coprocessor",
1082
+ "level": "high",
1083
+ "weight": 8
1084
+ },
1085
+ {
1086
+ "name": "EVE_CoCmd_animStart",
1087
+ "type": "coprocessor",
1088
+ "level": "high",
1089
+ "weight": 8
1090
+ },
1091
+ {
1092
+ "name": "EVE_CoCmd_appendF",
1093
+ "type": "coprocessor",
1094
+ "level": "high",
1095
+ "weight": 8
1096
+ },
1097
+ {
1098
+ "name": "EVE_CoCmd_flashAttach",
1099
+ "type": "coprocessor",
1100
+ "level": "high",
1101
+ "weight": 8
1102
+ },
1103
+ {
1104
+ "name": "EVE_CoCmd_flashDetach",
1105
+ "type": "coprocessor",
1106
+ "level": "high",
1107
+ "weight": 8
1108
+ },
1109
+ {
1110
+ "name": "EVE_CoCmd_flashErase",
1111
+ "type": "coprocessor",
1112
+ "level": "high",
1113
+ "weight": 8
1114
+ },
1115
+ {
1116
+ "name": "EVE_CoCmd_flashFast",
1117
+ "type": "coprocessor",
1118
+ "level": "high",
1119
+ "weight": 8
1120
+ },
1121
+ {
1122
+ "name": "EVE_CoCmd_flashProgram",
1123
+ "type": "coprocessor",
1124
+ "level": "high",
1125
+ "weight": 8
1126
+ },
1127
+ {
1128
+ "name": "EVE_CoCmd_flashRead",
1129
+ "type": "coprocessor",
1130
+ "level": "high",
1131
+ "weight": 8
1132
+ },
1133
+ {
1134
+ "name": "EVE_CoCmd_flashRead_flush",
1135
+ "type": "coprocessor",
1136
+ "level": "high",
1137
+ "weight": 8
1138
+ },
1139
+ {
1140
+ "name": "EVE_CoCmd_flashSource",
1141
+ "type": "coprocessor",
1142
+ "level": "high",
1143
+ "weight": 8
1144
+ },
1145
+ {
1146
+ "name": "EVE_CoCmd_flashSpiDesel",
1147
+ "type": "coprocessor",
1148
+ "level": "high",
1149
+ "weight": 8
1150
+ },
1151
+ {
1152
+ "name": "EVE_CoCmd_flashSpiRx",
1153
+ "type": "coprocessor",
1154
+ "level": "high",
1155
+ "weight": 8
1156
+ },
1157
+ {
1158
+ "name": "EVE_CoCmd_flashSpiTx",
1159
+ "type": "coprocessor",
1160
+ "level": "high",
1161
+ "weight": 8
1162
+ },
1163
+ {
1164
+ "name": "EVE_CoCmd_flashUpdate",
1165
+ "type": "coprocessor",
1166
+ "level": "high",
1167
+ "weight": 8
1168
+ },
1169
+ {
1170
+ "name": "EVE_CoCmd_flashWrite",
1171
+ "type": "coprocessor",
1172
+ "level": "high",
1173
+ "weight": 8
1174
+ },
1175
+ {
1176
+ "name": "EVE_CoCmd_sdAttach",
1177
+ "type": "coprocessor",
1178
+ "level": "high",
1179
+ "weight": 8
1180
+ },
1181
+ {
1182
+ "name": "EVE_CoCmd_sdBlockread",
1183
+ "type": "coprocessor",
1184
+ "level": "high",
1185
+ "weight": 8
1186
+ },
1187
+ {
1188
+ "name": "EVE_CoCmd_fsRead",
1189
+ "type": "coprocessor",
1190
+ "level": "high",
1191
+ "weight": 8
1192
+ },
1193
+ {
1194
+ "name": "EVE_CoCmd_fsSource",
1195
+ "type": "coprocessor",
1196
+ "level": "high",
1197
+ "weight": 8
1198
+ },
1199
+ {
1200
+ "name": "EVE_CoCmd_fsSize",
1201
+ "type": "coprocessor",
1202
+ "level": "high",
1203
+ "weight": 8
1204
+ },
1205
+ {
1206
+ "name": "EVE_CoCmd_fsOption",
1207
+ "type": "coprocessor",
1208
+ "level": "high",
1209
+ "weight": 8
1210
+ },
1211
+ {
1212
+ "name": "EVE_CoCmd_fsRead",
1213
+ "type": "coprocessor",
1214
+ "level": "high",
1215
+ "weight": 8
1216
+ },
1217
+ {
1218
+ "name": "EVE_CoCmd_fsDir",
1219
+ "type": "coprocessor",
1220
+ "level": "high",
1221
+ "weight": 8
1222
+ }
1223
+ ],
1224
+ "samples": [
1225
+ "sampleapp_animation",
1226
+ "sampleapp_audio",
1227
+ "sampleapp_bitmap",
1228
+ "sampleapp_flash",
1229
+ "sampleapp_font",
1230
+ "sampleapp_utility",
1231
+ "sampleapp_video"
1232
+ ],
1233
+ "keywords": [
1234
+ "anim",
1235
+ "animation",
1236
+ "asset",
1237
+ "audio",
1238
+ "bitmap",
1239
+ "file",
1240
+ "flash",
1241
+ "font",
1242
+ "motion",
1243
+ "sampleapp",
1244
+ "src",
1245
+ "storage"
1246
+ ],
1247
+ "registers": []
1248
+ },
1249
+ "graphics": {
1250
+ "commands": [
1251
+ {
1252
+ "name": "EVE_CoCmd_bitmapTransform",
1253
+ "type": "coprocessor",
1254
+ "level": "high",
1255
+ "weight": 8
1256
+ },
1257
+ {
1258
+ "name": "EVE_CoCmd_getImage",
1259
+ "type": "coprocessor",
1260
+ "level": "high",
1261
+ "weight": 8
1262
+ },
1263
+ {
1264
+ "name": "EVE_CoCmd_gradColor",
1265
+ "type": "coprocessor",
1266
+ "level": "high",
1267
+ "weight": 8
1268
+ },
1269
+ {
1270
+ "name": "EVE_CoCmd_logo",
1271
+ "type": "coprocessor",
1272
+ "level": "high",
1273
+ "weight": 8
1274
+ },
1275
+ {
1276
+ "name": "EVE_CoCmd_rotateAround",
1277
+ "type": "coprocessor",
1278
+ "level": "high",
1279
+ "weight": 8
1280
+ },
1281
+ {
1282
+ "name": "EVE_CoCmd_sdAttach",
1283
+ "type": "coprocessor",
1284
+ "level": "high",
1285
+ "weight": 8
1286
+ },
1287
+ {
1288
+ "name": "EVE_CoCmd_setBitmap",
1289
+ "type": "coprocessor",
1290
+ "level": "high",
1291
+ "weight": 8
1292
+ },
1293
+ {
1294
+ "name": "EVE_CoCmd_toggle",
1295
+ "type": "coprocessor",
1296
+ "level": "high",
1297
+ "weight": 8
1298
+ },
1299
+ {
1300
+ "name": "EVE_CoDl_bitmapTransformA",
1301
+ "type": "display_list",
1302
+ "level": "high",
1303
+ "weight": 8
1304
+ },
1305
+ {
1306
+ "name": "EVE_CoDl_bitmapTransformB",
1307
+ "type": "display_list",
1308
+ "level": "high",
1309
+ "weight": 8
1310
+ },
1311
+ {
1312
+ "name": "EVE_CoDl_bitmapTransformC",
1313
+ "type": "display_list",
1314
+ "level": "high",
1315
+ "weight": 8
1316
+ },
1317
+ {
1318
+ "name": "EVE_CoDl_bitmapTransformD",
1319
+ "type": "display_list",
1320
+ "level": "high",
1321
+ "weight": 8
1322
+ },
1323
+ {
1324
+ "name": "EVE_CoDl_bitmapTransformE",
1325
+ "type": "display_list",
1326
+ "level": "high",
1327
+ "weight": 8
1328
+ },
1329
+ {
1330
+ "name": "EVE_CoDl_bitmapTransformF",
1331
+ "type": "display_list",
1332
+ "level": "high",
1333
+ "weight": 8
1334
+ },
1335
+ {
1336
+ "name": "EVE_CoDl_vertexFormat",
1337
+ "type": "display_list",
1338
+ "level": "high",
1339
+ "weight": 8
1340
+ }
1341
+ ],
1342
+ "samples": [
1343
+ "sampleapp_animation",
1344
+ "sampleapp_audio",
1345
+ "sampleapp_bitmap",
1346
+ "sampleapp_extension",
1347
+ "sampleapp_font",
1348
+ "sampleapp_lvdsrx",
1349
+ "sampleapp_touch",
1350
+ "sampleapp_utility",
1351
+ "sampleapp_video",
1352
+ "sampleapp_widget"
1353
+ ],
1354
+ "keywords": [
1355
+ "animation",
1356
+ "audio",
1357
+ "bitmap",
1358
+ "extension",
1359
+ "file",
1360
+ "font",
1361
+ "graphics",
1362
+ "image",
1363
+ "lvdsrx"
1364
+ ],
1365
+ "registers": [
1366
+ "REG_CORE_R1",
1367
+ "REG_CORE_R2",
1368
+ "REG_HCYCLE",
1369
+ "REG_HOFFSET",
1370
+ "REG_HSIZE",
1371
+ "REG_HSYNC0",
1372
+ "REG_HSYNC1",
1373
+ "REG_LVDSRX_CORE_CAPTURE",
1374
+ "REG_LVDSRX_CORE_DEST",
1375
+ "REG_LVDSRX_CORE_DITHER",
1376
+ "REG_LVDSRX_CORE_ENABLE",
1377
+ "REG_LVDSRX_CORE_FORMAT",
1378
+ "REG_LVDSRX_CORE_FRAMES",
1379
+ "REG_LVDSRX_CORE_SETUP",
1380
+ "REG_RE_ACTIVE",
1381
+ "REG_RE_DEST",
1382
+ "REG_RE_DITHER",
1383
+ "REG_RE_FORMAT",
1384
+ "REG_RE_H",
1385
+ "REG_RE_RENDERS",
1386
+ "REG_RE_ROTATE",
1387
+ "REG_RE_W",
1388
+ "REG_SO_EN",
1389
+ "REG_SO_FORMAT",
1390
+ "REG_SO_MODE",
1391
+ "REG_SO_SOURCE",
1392
+ "REG_VCYCLE",
1393
+ "REG_VOFFSET",
1394
+ "REG_VSIZE",
1395
+ "REG_VSYNC0",
1396
+ "REG_VSYNC1"
1397
+ ]
1398
+ },
1399
+ "bitmap": {
1400
+ "commands": [
1401
+ {
1402
+ "name": "EVE_CoCmd_bitmapTransform",
1403
+ "type": "coprocessor",
1404
+ "level": "high",
1405
+ "weight": 8
1406
+ },
1407
+ {
1408
+ "name": "EVE_CoCmd_getImage",
1409
+ "type": "coprocessor",
1410
+ "level": "high",
1411
+ "weight": 8
1412
+ },
1413
+ {
1414
+ "name": "EVE_CoCmd_rotateAround",
1415
+ "type": "coprocessor",
1416
+ "level": "high",
1417
+ "weight": 8
1418
+ },
1419
+ {
1420
+ "name": "EVE_CoCmd_sdAttach",
1421
+ "type": "coprocessor",
1422
+ "level": "high",
1423
+ "weight": 8
1424
+ },
1425
+ {
1426
+ "name": "EVE_CoCmd_setBitmap",
1427
+ "type": "coprocessor",
1428
+ "level": "high",
1429
+ "weight": 8
1430
+ },
1431
+ {
1432
+ "name": "EVE_CoDl_bitmapTransformA",
1433
+ "type": "display_list",
1434
+ "level": "high",
1435
+ "weight": 8
1436
+ },
1437
+ {
1438
+ "name": "EVE_CoDl_bitmapTransformB",
1439
+ "type": "display_list",
1440
+ "level": "high",
1441
+ "weight": 8
1442
+ },
1443
+ {
1444
+ "name": "EVE_CoDl_bitmapTransformC",
1445
+ "type": "display_list",
1446
+ "level": "high",
1447
+ "weight": 8
1448
+ },
1449
+ {
1450
+ "name": "EVE_CoDl_bitmapTransformD",
1451
+ "type": "display_list",
1452
+ "level": "high",
1453
+ "weight": 8
1454
+ },
1455
+ {
1456
+ "name": "EVE_CoDl_bitmapTransformE",
1457
+ "type": "display_list",
1458
+ "level": "high",
1459
+ "weight": 8
1460
+ },
1461
+ {
1462
+ "name": "EVE_CoDl_bitmapTransformF",
1463
+ "type": "display_list",
1464
+ "level": "high",
1465
+ "weight": 8
1466
+ },
1467
+ {
1468
+ "name": "EVE_CoDl_vertexFormat",
1469
+ "type": "display_list",
1470
+ "level": "high",
1471
+ "weight": 8
1472
+ },
1473
+ {
1474
+ "name": "EVE_CoDl_vertex2f",
1475
+ "type": "display_list",
1476
+ "level": "high",
1477
+ "weight": 8
1478
+ },
1479
+ {
1480
+ "name": "EVE_CoDl_vertex2ii",
1481
+ "type": "display_list",
1482
+ "level": "high",
1483
+ "weight": 8
1484
+ }
1485
+ ],
1486
+ "samples": [
1487
+ "sampleapp_bitmap"
1488
+ ],
1489
+ "keywords": [
1490
+ "assets",
1491
+ "bitmap",
1492
+ "file",
1493
+ "graphics",
1494
+ "image",
1495
+ "sampleapp",
1496
+ "src"
1497
+ ],
1498
+ "registers": [
1499
+ ]
1500
+ },
1501
+ "image": {
1502
+ "commands": [
1503
+ {
1504
+ "name": "EVE_CoCmd_bitmapTransform",
1505
+ "type": "coprocessor",
1506
+ "level": "high",
1507
+ "weight": 8
1508
+ },
1509
+ {
1510
+ "name": "EVE_CoCmd_getImage",
1511
+ "type": "coprocessor",
1512
+ "level": "high",
1513
+ "weight": 8
1514
+ },
1515
+ {
1516
+ "name": "EVE_CoCmd_rotateAround",
1517
+ "type": "coprocessor",
1518
+ "level": "high",
1519
+ "weight": 8
1520
+ },
1521
+ {
1522
+ "name": "EVE_CoCmd_sdAttach",
1523
+ "type": "coprocessor",
1524
+ "level": "high",
1525
+ "weight": 8
1526
+ },
1527
+ {
1528
+ "name": "EVE_CoCmd_setBitmap",
1529
+ "type": "coprocessor",
1530
+ "level": "high",
1531
+ "weight": 8
1532
+ },
1533
+ {
1534
+ "name": "EVE_CoDl_bitmapTransformA",
1535
+ "type": "display_list",
1536
+ "level": "high",
1537
+ "weight": 8
1538
+ },
1539
+ {
1540
+ "name": "EVE_CoDl_bitmapTransformB",
1541
+ "type": "display_list",
1542
+ "level": "high",
1543
+ "weight": 8
1544
+ },
1545
+ {
1546
+ "name": "EVE_CoDl_bitmapTransformC",
1547
+ "type": "display_list",
1548
+ "level": "high",
1549
+ "weight": 8
1550
+ },
1551
+ {
1552
+ "name": "EVE_CoDl_bitmapTransformD",
1553
+ "type": "display_list",
1554
+ "level": "high",
1555
+ "weight": 8
1556
+ },
1557
+ {
1558
+ "name": "EVE_CoDl_bitmapTransformE",
1559
+ "type": "display_list",
1560
+ "level": "high",
1561
+ "weight": 8
1562
+ },
1563
+ {
1564
+ "name": "EVE_CoDl_bitmapTransformF",
1565
+ "type": "display_list",
1566
+ "level": "high",
1567
+ "weight": 8
1568
+ },
1569
+ {
1570
+ "name": "EVE_CoDl_vertexFormat",
1571
+ "type": "display_list",
1572
+ "level": "high",
1573
+ "weight": 8
1574
+ },
1575
+ {
1576
+ "name": "EVE_CoDl_vertex2f",
1577
+ "type": "display_list",
1578
+ "level": "high",
1579
+ "weight": 8
1580
+ },
1581
+ {
1582
+ "name": "EVE_CoDl_vertex2ii",
1583
+ "type": "display_list",
1584
+ "level": "high",
1585
+ "weight": 8
1586
+ }
1587
+ ],
1588
+ "samples": [
1589
+ "sampleapp_bitmap"
1590
+ ],
1591
+ "keywords": [
1592
+ "assets",
1593
+ "bitmap",
1594
+ "file",
1595
+ "graphics",
1596
+ "image",
1597
+ "src",
1598
+ "sampleapp"
1599
+ ],
1600
+ "registers": [
1601
+ ]
1602
+ },
1603
+ "touch": {
1604
+ "commands": [
1605
+ {
1606
+ "name": "EVE_CoCmd_button",
1607
+ "type": "coprocessor",
1608
+ "level": "high",
1609
+ "weight": 8
1610
+ },
1611
+ {
1612
+ "name": "EVE_CoCmd_keys",
1613
+ "type": "coprocessor",
1614
+ "level": "high",
1615
+ "weight": 8
1616
+ }
1617
+ ],
1618
+ "samples": [
1619
+ "sampleapp_touch"
1620
+ ],
1621
+ "keywords": [
1622
+ "animation",
1623
+ "assets",
1624
+ "file",
1625
+ "font",
1626
+ "hdr",
1627
+ "information",
1628
+ "input",
1629
+ "list"
1630
+ ],
1631
+ "registers": [
1632
+ "REG_CTOUCH_EXTENDED",
1633
+ "REG_CTOUCH_TOUCH0_XY",
1634
+ "REG_CTOUCH_TOUCH4_XY",
1635
+ "REG_CTOUCH_TOUCHA_XY",
1636
+ "REG_CTOUCH_TOUCHB_XY",
1637
+ "REG_CTOUCH_TOUCHC_XY",
1638
+ "REG_TAG",
1639
+ "REG_TAG_X",
1640
+ "REG_TAG_Y",
1641
+ "REG_TOUCH_CONFIG",
1642
+ "REG_TOUCH_RAW_XY",
1643
+ "REG_TOUCH_SCREEN_XY",
1644
+ "REG_TOUCH_TAG",
1645
+ "REG_TOUCH_TAG1",
1646
+ "REG_TOUCH_TAG1_XY",
1647
+ "REG_TOUCH_TAG2",
1648
+ "REG_TOUCH_TAG2_XY",
1649
+ "REG_TOUCH_TAG3",
1650
+ "REG_TOUCH_TAG3_XY",
1651
+ "REG_TOUCH_TAG4",
1652
+ "REG_TOUCH_TAG4_XY",
1653
+ "REG_TOUCH_TAG_XY",
1654
+ "REG_TOUCH_TRANSFORM_A",
1655
+ "REG_TOUCH_TRANSFORM_B",
1656
+ "REG_TOUCH_TRANSFORM_C",
1657
+ "REG_TOUCH_TRANSFORM_D",
1658
+ "REG_TOUCH_TRANSFORM_E",
1659
+ "REG_TOUCH_TRANSFORM_F",
1660
+ "REG_TRACKER",
1661
+ "REG_TRACKER_1",
1662
+ "REG_TRACKER_2",
1663
+ "REG_TRACKER_3",
1664
+ "REG_TRACKER_4"
1665
+ ]
1666
+ },
1667
+ "button": {
1668
+ "commands": [
1669
+ {
1670
+ "name": "EVE_CoCmd_button",
1671
+ "type": "coprocessor",
1672
+ "level": "high",
1673
+ "weight": 8
1674
+ },
1675
+ {
1676
+ "name": "EVE_CoCmd_keys",
1677
+ "type": "coprocessor",
1678
+ "level": "high",
1679
+ "weight": 8
1680
+ }
1681
+ ],
1682
+ "samples": [
1683
+ "sampleapp_animation",
1684
+ "sampleapp_audio",
1685
+ "sampleapp_extension",
1686
+ "sampleapp_touch",
1687
+ "sampleapp_utility",
1688
+ "sampleapp_video",
1689
+ "sampleapp_widget"
1690
+ ],
1691
+ "keywords": [
1692
+ "button",
1693
+ "sampleapp",
1694
+ "text",
1695
+ "touch",
1696
+ "widget"
1697
+ ],
1698
+ "registers": []
1699
+ },
1700
+ "font": {
1701
+ "commands": [
1702
+ {
1703
+ "name": "EVE_CoCmd_button",
1704
+ "type": "coprocessor",
1705
+ "level": "high",
1706
+ "weight": 8
1707
+ },
1708
+ {
1709
+ "name": "EVE_CoCmd_fillWidth",
1710
+ "type": "coprocessor",
1711
+ "level": "high",
1712
+ "weight": 8
1713
+ },
1714
+ {
1715
+ "name": "EVE_CoCmd_keys",
1716
+ "type": "coprocessor",
1717
+ "level": "high",
1718
+ "weight": 8
1719
+ },
1720
+ {
1721
+ "name": "EVE_CoCmd_resetFonts",
1722
+ "type": "coprocessor",
1723
+ "level": "high",
1724
+ "weight": 8
1725
+ },
1726
+ {
1727
+ "name": "EVE_CoCmd_romFont",
1728
+ "type": "coprocessor",
1729
+ "level": "high",
1730
+ "weight": 8
1731
+ },
1732
+ {
1733
+ "name": "EVE_CoCmd_setFont",
1734
+ "type": "coprocessor",
1735
+ "level": "high",
1736
+ "weight": 8
1737
+ },
1738
+ {
1739
+ "name": "EVE_CoCmd_text_s",
1740
+ "type": "coprocessor",
1741
+ "level": "high",
1742
+ "weight": 8
1743
+ }
1744
+ ],
1745
+ "samples": [
1746
+ "sampleapp_font"
1747
+ ],
1748
+ "keywords": [
1749
+ "file",
1750
+ "flash",
1751
+ "sdcard",
1752
+ "font",
1753
+ "sampleapp",
1754
+ "src",
1755
+ "text"
1756
+ ],
1757
+ "registers": []
1758
+ },
1759
+ "clock": {
1760
+ "commands": [
1761
+ {
1762
+ "name": "EVE_CoCmd_clock",
1763
+ "type": "coprocessor",
1764
+ "level": "high",
1765
+ "weight": 8
1766
+ },
1767
+ {
1768
+ "name": "EVE_CoCmd_graphicsFinish",
1769
+ "type": "coprocessor",
1770
+ "level": "high",
1771
+ "weight": 8
1772
+ },
1773
+ {
1774
+ "name": "EVE_CoCmd_setMatrix",
1775
+ "type": "coprocessor",
1776
+ "level": "high",
1777
+ "weight": 8
1778
+ }
1779
+ ],
1780
+ "samples": [
1781
+ "sampleapp_widget"
1782
+ ],
1783
+ "keywords": [
1784
+ "bitmap",
1785
+ "clock",
1786
+ "sampleapp",
1787
+ "src",
1788
+ "widget"
1789
+ ],
1790
+ "registers": []
1791
+ },
1792
+ "widget": {
1793
+ "commands": [
1794
+ {
1795
+ "name": "EVE_CoCmd_clock",
1796
+ "type": "coprocessor",
1797
+ "level": "high",
1798
+ "weight": 8
1799
+ },
1800
+ {
1801
+ "name": "EVE_CoCmd_keys",
1802
+ "type": "coprocessor",
1803
+ "level": "high",
1804
+ "weight": 8
1805
+ },
1806
+ {
1807
+ "name": "EVE_CoCmd_number",
1808
+ "type": "coprocessor",
1809
+ "level": "high",
1810
+ "weight": 8
1811
+ },
1812
+ {
1813
+ "name": "EVE_CoCmd_progress",
1814
+ "type": "coprocessor",
1815
+ "level": "high",
1816
+ "weight": 8
1817
+ },
1818
+ {
1819
+ "name": "EVE_CoCmd_scrollbar",
1820
+ "type": "coprocessor",
1821
+ "level": "high",
1822
+ "weight": 8
1823
+ },
1824
+ {
1825
+ "name": "EVE_CoCmd_slider",
1826
+ "type": "coprocessor",
1827
+ "level": "high",
1828
+ "weight": 8
1829
+ },
1830
+ {
1831
+ "name": "EVE_CoCmd_spinner",
1832
+ "type": "coprocessor",
1833
+ "level": "high",
1834
+ "weight": 8
1835
+ },
1836
+ {
1837
+ "name": "EVE_CoCmd_toggle",
1838
+ "type": "coprocessor",
1839
+ "level": "high",
1840
+ "weight": 8
1841
+ }
1842
+ ],
1843
+ "samples": [
1844
+ "sampleapp_widget"
1845
+ ],
1846
+ "keywords": [
1847
+ "sampleapp",
1848
+ "src",
1849
+ "text",
1850
+ "widget"
1851
+ ],
1852
+ "registers": []
1853
+ },
1854
+ "gauge": {
1855
+ "commands": [
1856
+ {
1857
+ "name": "EVE_CoCmd_gauge",
1858
+ "type": "coprocessor",
1859
+ "level": "high",
1860
+ "weight": 8
1861
+ }
1862
+ ],
1863
+ "samples": [
1864
+ "sampleapp_widget"
1865
+ ],
1866
+ "keywords": [
1867
+ "gauge",
1868
+ "sampleapp",
1869
+ "src",
1870
+ "widget"
1871
+ ],
1872
+ "registers": []
1873
+ },
1874
+ "video": {
1875
+ "commands": [
1876
+ {
1877
+ "name": "EVE_CoCmd_playVideo",
1878
+ "type": "coprocessor",
1879
+ "level": "high",
1880
+ "weight": 8
1881
+ },
1882
+ {
1883
+ "name": "EVE_CoCmd_videoFrame",
1884
+ "type": "coprocessor",
1885
+ "level": "high",
1886
+ "weight": 8
1887
+ },
1888
+ {
1889
+ "name": "EVE_CoCmd_videoStart",
1890
+ "type": "coprocessor",
1891
+ "level": "high",
1892
+ "weight": 8
1893
+ }
1894
+ ],
1895
+ "samples": [
1896
+ "sampleapp_video"
1897
+ ],
1898
+ "keywords": [
1899
+ "asset",
1900
+ "assets",
1901
+ "file",
1902
+ "flash",
1903
+ "sdcard",
1904
+ "media",
1905
+ "sampleapp",
1906
+ "src",
1907
+ "storage",
1908
+ "video"
1909
+ ],
1910
+ "registers": [
1911
+ "REG_VOL_L_PB",
1912
+ "REG_VOL_R_PB",
1913
+ "REG_PLAY_CONTROL",
1914
+ "REG_OBJECT_COMPLETE"
1915
+ ]
1916
+ },
1917
+ "media": {
1918
+ "commands": [
1919
+ {
1920
+ "name": "EVE_CoCmd_playVideo",
1921
+ "type": "coprocessor",
1922
+ "level": "high",
1923
+ "weight": 8
1924
+ },
1925
+ {
1926
+ "name": "EVE_CoCmd_videoFrame",
1927
+ "type": "coprocessor",
1928
+ "level": "high",
1929
+ "weight": 8
1930
+ },
1931
+ {
1932
+ "name": "EVE_CoCmd_videoStart",
1933
+ "type": "coprocessor",
1934
+ "level": "high",
1935
+ "weight": 8
1936
+ }
1937
+ ],
1938
+ "samples": [
1939
+ "sampleapp_video"
1940
+ ],
1941
+ "keywords": [
1942
+ "asset",
1943
+ "assets",
1944
+ "file",
1945
+ "flash",
1946
+ "sdcard",
1947
+ "media",
1948
+ "sampleapp",
1949
+ "src",
1950
+ "storage",
1951
+ "video"
1952
+ ],
1953
+ "registers": []
1954
+ },
1955
+ "keyboard": {
1956
+ "commands": [
1957
+ {
1958
+ "name": "EVE_CoCmd_keys",
1959
+ "type": "coprocessor",
1960
+ "level": "high",
1961
+ "weight": 8
1962
+ }
1963
+ ],
1964
+ "samples": [
1965
+ "sampleapp_widget"
1966
+ ],
1967
+ "keywords": [
1968
+ "font",
1969
+ "keyboard",
1970
+ "sampleapp",
1971
+ "src",
1972
+ "text",
1973
+ "widget"
1974
+ ],
1975
+ "registers": []
1976
+ },
1977
+ "toggle": {
1978
+ "commands": [
1979
+ {
1980
+ "name": "EVE_CoCmd_toggle",
1981
+ "type": "coprocessor",
1982
+ "level": "high",
1983
+ "weight": 8
1984
+ }
1985
+ ],
1986
+ "samples": [
1987
+ "sampleapp_widget"
1988
+ ],
1989
+ "keywords": [
1990
+ "sampleapp",
1991
+ "src",
1992
+ "text",
1993
+ "toggle",
1994
+ "touch",
1995
+ "widget"
1996
+ ],
1997
+ "registers": []
1998
+ },
1999
+ "progress": {
2000
+ "commands": [
2001
+ {
2002
+ "name": "EVE_CoCmd_progress",
2003
+ "type": "coprocessor",
2004
+ "level": "high",
2005
+ "weight": 8
2006
+ }
2007
+ ],
2008
+ "samples": [
2009
+ "sampleapp_widget"
2010
+ ],
2011
+ "keywords": [
2012
+ "font",
2013
+ "progress",
2014
+ "sampleapp",
2015
+ "src",
2016
+ "text",
2017
+ "touch",
2018
+ "widget"
2019
+ ],
2020
+ "registers": []
2021
+ },
2022
+ "input": {
2023
+ "commands": [
2024
+ {
2025
+ "name": "EVE_CoDl_tag",
2026
+ "type": "display_list",
2027
+ "level": "high",
2028
+ "weight": 8
2029
+ },
2030
+ {
2031
+ "name": "EVE_CoDl_tagMask",
2032
+ "type": "display_list",
2033
+ "level": "high",
2034
+ "weight": 8
2035
+ },
2036
+ {
2037
+ "name": "EVE_CoCmd_track",
2038
+ "type": "coprocessor",
2039
+ "level": "high",
2040
+ "weight": 8
2041
+ }
2042
+ ],
2043
+ "samples": [
2044
+ "sampleapp_touch"
2045
+ ],
2046
+ "keywords": [
2047
+ "input",
2048
+ "sampleapp",
2049
+ "src",
2050
+ "tag",
2051
+ "touch"
2052
+ ],
2053
+ "registers": [
2054
+ "REG_CTOUCH_EXTENDED",
2055
+ "REG_CTOUCH_TOUCH0_XY",
2056
+ "REG_CTOUCH_TOUCH4_XY",
2057
+ "REG_CTOUCH_TOUCHA_XY",
2058
+ "REG_CTOUCH_TOUCHB_XY",
2059
+ "REG_CTOUCH_TOUCHC_XY",
2060
+ "REG_TAG",
2061
+ "REG_TAG_X",
2062
+ "REG_TAG_Y",
2063
+ "REG_TOUCH_CONFIG",
2064
+ "REG_TOUCH_RAW_XY",
2065
+ "REG_TOUCH_SCREEN_XY",
2066
+ "REG_TOUCH_TAG",
2067
+ "REG_TOUCH_TAG1",
2068
+ "REG_TOUCH_TAG1_XY",
2069
+ "REG_TOUCH_TAG2",
2070
+ "REG_TOUCH_TAG2_XY",
2071
+ "REG_TOUCH_TAG3",
2072
+ "REG_TOUCH_TAG3_XY",
2073
+ "REG_TOUCH_TAG4",
2074
+ "REG_TOUCH_TAG4_XY",
2075
+ "REG_TOUCH_TAG_XY",
2076
+ "REG_TOUCH_TRANSFORM_A",
2077
+ "REG_TOUCH_TRANSFORM_B",
2078
+ "REG_TOUCH_TRANSFORM_C",
2079
+ "REG_TOUCH_TRANSFORM_D",
2080
+ "REG_TOUCH_TRANSFORM_E",
2081
+ "REG_TOUCH_TRANSFORM_F",
2082
+ "REG_TRACKER",
2083
+ "REG_TRACKER_1",
2084
+ "REG_TRACKER_2",
2085
+ "REG_TRACKER_3",
2086
+ "REG_TRACKER_4"
2087
+ ]
2088
+ },
2089
+ "tag": {
2090
+ "commands": [
2091
+ {
2092
+ "name": "EVE_CoDl_tag",
2093
+ "type": "display_list",
2094
+ "level": "high",
2095
+ "weight": 8
2096
+ },
2097
+ {
2098
+ "name": "EVE_CoDl_tagMask",
2099
+ "type": "display_list",
2100
+ "level": "high",
2101
+ "weight": 8
2102
+ }
2103
+ ],
2104
+ "samples": [
2105
+ "sampleapp_touch"
2106
+ ],
2107
+ "keywords": [
2108
+ "input",
2109
+ "sampleapp",
2110
+ "src",
2111
+ "tag",
2112
+ "touch"
2113
+ ],
2114
+ "registers": [
2115
+ "REG_CTOUCH_EXTENDED",
2116
+ "REG_CTOUCH_TOUCH0_XY",
2117
+ "REG_CTOUCH_TOUCH4_XY",
2118
+ "REG_CTOUCH_TOUCHA_XY",
2119
+ "REG_CTOUCH_TOUCHB_XY",
2120
+ "REG_CTOUCH_TOUCHC_XY",
2121
+ "REG_TAG",
2122
+ "REG_TAG_X",
2123
+ "REG_TAG_Y",
2124
+ "REG_TOUCH_CONFIG",
2125
+ "REG_TOUCH_RAW_XY",
2126
+ "REG_TOUCH_SCREEN_XY",
2127
+ "REG_TOUCH_TAG",
2128
+ "REG_TOUCH_TAG1",
2129
+ "REG_TOUCH_TAG1_XY",
2130
+ "REG_TOUCH_TAG2",
2131
+ "REG_TOUCH_TAG2_XY",
2132
+ "REG_TOUCH_TAG3",
2133
+ "REG_TOUCH_TAG3_XY",
2134
+ "REG_TOUCH_TAG4",
2135
+ "REG_TOUCH_TAG4_XY",
2136
+ "REG_TOUCH_TAG_XY",
2137
+ "REG_TOUCH_TRANSFORM_A",
2138
+ "REG_TOUCH_TRANSFORM_B",
2139
+ "REG_TOUCH_TRANSFORM_C",
2140
+ "REG_TOUCH_TRANSFORM_D",
2141
+ "REG_TOUCH_TRANSFORM_E",
2142
+ "REG_TOUCH_TRANSFORM_F",
2143
+ "REG_TRACKER",
2144
+ "REG_TRACKER_1",
2145
+ "REG_TRACKER_2",
2146
+ "REG_TRACKER_3",
2147
+ "REG_TRACKER_4"
2148
+ ]
2149
+ },
2150
+ "slider": {
2151
+ "commands": [
2152
+ {
2153
+ "name": "EVE_CoCmd_slider",
2154
+ "type": "coprocessor",
2155
+ "level": "high",
2156
+ "weight": 8
2157
+ }
2158
+ ],
2159
+ "samples": [
2160
+ "sampleapp_widget"
2161
+ ],
2162
+ "keywords": [
2163
+ "sampleapp",
2164
+ "slider",
2165
+ "src",
2166
+ "touch",
2167
+ "widget"
2168
+ ],
2169
+ "registers": []
2170
+ },
2171
+ "loading": {
2172
+ "commands": [
2173
+ {
2174
+ "name": "EVE_CoCmd_spinner",
2175
+ "type": "coprocessor",
2176
+ "level": "high",
2177
+ "weight": 8
2178
+ }
2179
+ ],
2180
+ "samples": [
2181
+ "sampleapp_widget"
2182
+ ],
2183
+ "keywords": [
2184
+ "loading",
2185
+ "sampleapp",
2186
+ "src",
2187
+ "widget"
2188
+ ],
2189
+ "registers": []
2190
+ },
2191
+ "audio": {
2192
+ "commands": [
2193
+ {
2194
+ "name": "Play_Sound",
2195
+ "type": "helper",
2196
+ "level": "high",
2197
+ "weight": 10
2198
+ },
2199
+ {
2200
+ "name": "EVE_CoCmd_i2sStart",
2201
+ "type": "coprocessor",
2202
+ "level": "high",
2203
+ "weight": 8
2204
+ },
2205
+ {
2206
+ "name": "EVE_CoCmd_loadWav",
2207
+ "type": "coprocessor",
2208
+ "level": "high",
2209
+ "weight": 8
2210
+ },
2211
+ {
2212
+ "name": "EVE_CoCmd_playWav",
2213
+ "type": "coprocessor",
2214
+ "level": "high",
2215
+ "weight": 8
2216
+ }
2217
+ ],
2218
+ "samples": [
2219
+ "sampleapp_audio"
2220
+ ],
2221
+ "keywords": [
2222
+ "assets",
2223
+ "audio",
2224
+ "file",
2225
+ "opt_sound",
2226
+ "play_sound",
2227
+ "sampleapp",
2228
+ "sound",
2229
+ "src"
2230
+ ],
2231
+ "registers": [
2232
+ "REG_AUD_PWM",
2233
+ "REG_I2S",
2234
+ "REG_I2S_CFG",
2235
+ "REG_I2S_CTL",
2236
+ "REG_I2S_EN",
2237
+ "REG_I2S_FREQ",
2238
+ "REG_I2S_PAD_CFG",
2239
+ "REG_I2S_STAT",
2240
+ "REG_PLAYBACK_FORMAT",
2241
+ "REG_PLAYBACK_FREQ",
2242
+ "REG_PLAYBACK_LENGTH",
2243
+ "REG_PLAYBACK_LOOP",
2244
+ "REG_PLAYBACK_PAUSE",
2245
+ "REG_PLAYBACK_PLAY",
2246
+ "REG_PLAYBACK_READPTR",
2247
+ "REG_PLAYBACK_START",
2248
+ "REG_SOUND",
2249
+ "REG_PLAY",
2250
+ "REG_VOL_L_PB",
2251
+ "REG_VOL_R_PB",
2252
+ "REG_VOL_SOUND"
2253
+ ]
2254
+ },
2255
+ "sd_card": {
2256
+ "commands": [
2257
+ {
2258
+ "name": "EVE_CoCmd_sdAttach",
2259
+ "type": "coprocessor",
2260
+ "level": "high",
2261
+ "weight": 8
2262
+ },
2263
+ {
2264
+ "name": "EVE_CoCmd_sdBlockread",
2265
+ "type": "coprocessor",
2266
+ "level": "high",
2267
+ "weight": 8
2268
+ },
2269
+ {
2270
+ "name": "EVE_CoCmd_fsRead",
2271
+ "type": "coprocessor",
2272
+ "level": "high",
2273
+ "weight": 8
2274
+ },
2275
+ {
2276
+ "name": "EVE_CoCmd_fsSource",
2277
+ "type": "coprocessor",
2278
+ "level": "high",
2279
+ "weight": 8
2280
+ },
2281
+ {
2282
+ "name": "EVE_CoCmd_fsSize",
2283
+ "type": "coprocessor",
2284
+ "level": "high",
2285
+ "weight": 8
2286
+ },
2287
+ {
2288
+ "name": "EVE_CoCmd_fsOption",
2289
+ "type": "coprocessor",
2290
+ "level": "high",
2291
+ "weight": 8
2292
+ },
2293
+ {
2294
+ "name": "EVE_CoCmd_fsRead",
2295
+ "type": "coprocessor",
2296
+ "level": "high",
2297
+ "weight": 8
2298
+ },
2299
+ {
2300
+ "name": "EVE_CoCmd_fsDir",
2301
+ "type": "coprocessor",
2302
+ "level": "high",
2303
+ "weight": 8
2304
+ }
2305
+ ],
2306
+ "samples": [
2307
+ "sampleapp_bitmap",
2308
+ "sampleapp_video",
2309
+ "sampleapp_utility",
2310
+ "sampleapp_font",
2311
+ "sampleapp_audio",
2312
+ "sampleapp_animation"
2313
+ ],
2314
+ "keywords": [
2315
+ "opt_fs",
2316
+ "sdcard"
2317
+ ],
2318
+ "registers": [
2319
+ "CMD_FSDIR",
2320
+ "CMD_FSOPTION",
2321
+ "CMD_FSREAD",
2322
+ "CMD_FSSIZE",
2323
+ "CMD_FSSOURCE"
2324
+ ]
2325
+ },
2326
+ "display": {
2327
+ "commands": [],
2328
+ "samples": [],
2329
+ "keywords": [
2330
+ "display",
2331
+ "hcycle",
2332
+ "hoffset",
2333
+ "hsize",
2334
+ "hsync0",
2335
+ "hsync1",
2336
+ "vcycle",
2337
+ "voffset",
2338
+ "vsize",
2339
+ "vsync0",
2340
+ "vsync1"
2341
+ ],
2342
+ "registers": [
2343
+ "REG_HCYCLE",
2344
+ "REG_HOFFSET",
2345
+ "REG_HSIZE",
2346
+ "REG_HSYNC0",
2347
+ "REG_HSYNC1",
2348
+ "REG_LVDSRX_CORE_CAPTURE",
2349
+ "REG_LVDSRX_CORE_DEST",
2350
+ "REG_LVDSRX_CORE_DITHER",
2351
+ "REG_LVDSRX_CORE_ENABLE",
2352
+ "REG_LVDSRX_CORE_FORMAT",
2353
+ "REG_LVDSRX_CORE_FRAMES",
2354
+ "REG_LVDSRX_CORE_SETUP",
2355
+ "REG_RE_ACTIVE",
2356
+ "REG_RE_DEST",
2357
+ "REG_RE_DITHER",
2358
+ "REG_RE_FORMAT",
2359
+ "REG_RE_H",
2360
+ "REG_RE_RENDERS",
2361
+ "REG_RE_ROTATE",
2362
+ "REG_RE_W",
2363
+ "REG_SO_EN",
2364
+ "REG_SO_FORMAT",
2365
+ "REG_SO_MODE",
2366
+ "REG_SO_SOURCE",
2367
+ "REG_VCYCLE",
2368
+ "REG_VOFFSET",
2369
+ "REG_VSIZE",
2370
+ "REG_VSYNC0",
2371
+ "REG_VSYNC1"
2372
+ ]
2373
+ },
2374
+ "lvds": {
2375
+ "commands": [],
2376
+ "samples": [],
2377
+ "keywords": [
2378
+ "lvds",
2379
+ "lvdsrx"
2380
+ ],
2381
+ "registers": [
2382
+ "REG_LVDSRX_CORE_CAPTURE",
2383
+ "REG_LVDSRX_CORE_DEST",
2384
+ "REG_LVDSRX_CORE_DITHER",
2385
+ "REG_LVDSRX_CORE_ENABLE",
2386
+ "REG_LVDSRX_CORE_FORMAT",
2387
+ "REG_LVDSRX_CORE_FRAMES",
2388
+ "REG_LVDSRX_CORE_SETUP",
2389
+ "REG_LVDSRX_CTRL",
2390
+ "REG_LVDSRX_SETUP",
2391
+ "REG_LVDSRX_STAT",
2392
+ "REG_LVDSTX_CTRL_CH0",
2393
+ "REG_LVDSTX_CTRL_CH1",
2394
+ "REG_LVDSTX_EN",
2395
+ "REG_LVDSTX_ERR_STAT",
2396
+ "REG_LVDSTX_PLLCFG",
2397
+ "REG_LVDSTX_STAT"
2398
+ ]
2399
+ },
2400
+ "primitives": {
2401
+ "commands": [],
2402
+ "samples": [
2403
+ "sampleapp_primitives"
2404
+ ],
2405
+ "keywords": [
2406
+ "primitives",
2407
+ "point",
2408
+ "line",
2409
+ "rect",
2410
+ "bargraph",
2411
+ "linestrip",
2412
+ "edgestrip",
2413
+ "scissor",
2414
+ "stencil",
2415
+ "polygon",
2416
+ "cube",
2417
+ "region",
2418
+ "testcard"
2419
+ ],
2420
+ "registers": []
2421
+ },
2422
+ "utility": {
2423
+ "commands": [],
2424
+ "samples": [
2425
+ "sampleapp_utility"
2426
+ ],
2427
+ "keywords": [
2428
+ "utility",
2429
+ "calllist",
2430
+ "copylist",
2431
+ "inflate",
2432
+ "coprocessorfault",
2433
+ "fillwidth",
2434
+ "printtype",
2435
+ "screenrotate",
2436
+ "numberbase",
2437
+ "crccheck",
2438
+ "skipcond",
2439
+ "waitcond",
2440
+ "interrupt",
2441
+ "zorder",
2442
+ "context"
2443
+ ],
2444
+ "registers": []
2445
+ }
2446
+ }