@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,4979 @@
1
+ {
2
+ "animation": {
3
+ "commands": [
4
+ {
5
+ "name": "EVE_CoCmd_animDraw",
6
+ "type": "coprocessor",
7
+ "level": "high",
8
+ "weight": 8
9
+ },
10
+ {
11
+ "name": "EVE_CoCmd_animFrame",
12
+ "type": "coprocessor",
13
+ "level": "high",
14
+ "weight": 8
15
+ },
16
+ {
17
+ "name": "EVE_CoCmd_animFrameRam",
18
+ "type": "coprocessor",
19
+ "level": "high",
20
+ "weight": 8
21
+ },
22
+ {
23
+ "name": "EVE_CoCmd_animStart",
24
+ "type": "coprocessor",
25
+ "level": "high",
26
+ "weight": 8
27
+ },
28
+ {
29
+ "name": "EVE_CoCmd_animStartRam",
30
+ "type": "coprocessor",
31
+ "level": "high",
32
+ "weight": 8
33
+ },
34
+ {
35
+ "name": "EVE_CoCmd_animStop",
36
+ "type": "coprocessor",
37
+ "level": "high",
38
+ "weight": 8
39
+ },
40
+ {
41
+ "name": "EVE_CoCmd_animXY",
42
+ "type": "coprocessor",
43
+ "level": "high",
44
+ "weight": 8
45
+ },
46
+ {
47
+ "name": "EVE_CoCmd_runAnim",
48
+ "type": "coprocessor",
49
+ "level": "high",
50
+ "weight": 8
51
+ }
52
+ ],
53
+ "samples": [
54
+ "sampleapp_animation"
55
+ ],
56
+ "keywords": [
57
+ "anim",
58
+ "animated",
59
+ "animation",
60
+ "motion"
61
+ ],
62
+ "registers": [
63
+ "CMD_ANIMDRAW",
64
+ "CMD_ANIMFRAME",
65
+ "CMD_ANIMFRAMERAM",
66
+ "CMD_ANIMSTART",
67
+ "CMD_ANIMSTARTRAM",
68
+ "CMD_ANIMSTOP",
69
+ "CMD_ANIMXY",
70
+ "CMD_RUNANIM",
71
+ "REG_ANIM_ACTIVE"
72
+ ]
73
+ },
74
+ "arc": {
75
+ "commands": [
76
+ {
77
+ "name": "EVE_CoCmd_arc",
78
+ "type": "coprocessor",
79
+ "level": "high",
80
+ "weight": 8
81
+ }
82
+ ],
83
+ "samples": [],
84
+ "keywords": [
85
+ "arc"
86
+ ],
87
+ "registers": []
88
+ },
89
+ "asset": {
90
+ "commands": [
91
+ {
92
+ "name": "Flash_Init",
93
+ "type": "helper",
94
+ "level": "high",
95
+ "weight": 10
96
+ },
97
+ {
98
+ "name": "FlashHelper_ClearCache",
99
+ "type": "helper",
100
+ "level": "high",
101
+ "weight": 10
102
+ },
103
+ {
104
+ "name": "FlashHelper_Erase",
105
+ "type": "helper",
106
+ "level": "high",
107
+ "weight": 10
108
+ },
109
+ {
110
+ "name": "FlashHelper_flashWriteExt",
111
+ "type": "helper",
112
+ "level": "high",
113
+ "weight": 10
114
+ },
115
+ {
116
+ "name": "FlashHelper_GetState",
117
+ "type": "helper",
118
+ "level": "high",
119
+ "weight": 10
120
+ },
121
+ {
122
+ "name": "FlashHelper_Read",
123
+ "type": "helper",
124
+ "level": "high",
125
+ "weight": 10
126
+ },
127
+ {
128
+ "name": "FlashHelper_SwitchFullMode",
129
+ "type": "helper",
130
+ "level": "high",
131
+ "weight": 10
132
+ },
133
+ {
134
+ "name": "FlashHelper_SwitchState",
135
+ "type": "helper",
136
+ "level": "high",
137
+ "weight": 10
138
+ },
139
+ {
140
+ "name": "FlashHelper_Update",
141
+ "type": "helper",
142
+ "level": "high",
143
+ "weight": 10
144
+ },
145
+ {
146
+ "name": "FlashHelper_Write",
147
+ "type": "helper",
148
+ "level": "high",
149
+ "weight": 10
150
+ },
151
+ {
152
+ "name": "EVE_CoCmd_flashAttach",
153
+ "type": "coprocessor",
154
+ "level": "high",
155
+ "weight": 8
156
+ },
157
+ {
158
+ "name": "EVE_CoCmd_flashDetach",
159
+ "type": "coprocessor",
160
+ "level": "high",
161
+ "weight": 8
162
+ },
163
+ {
164
+ "name": "EVE_CoCmd_flashErase",
165
+ "type": "coprocessor",
166
+ "level": "high",
167
+ "weight": 8
168
+ },
169
+ {
170
+ "name": "EVE_CoCmd_flashFast",
171
+ "type": "coprocessor",
172
+ "level": "high",
173
+ "weight": 8
174
+ },
175
+ {
176
+ "name": "EVE_CoCmd_flashProgram",
177
+ "type": "coprocessor",
178
+ "level": "high",
179
+ "weight": 8
180
+ },
181
+ {
182
+ "name": "EVE_CoCmd_flashRead",
183
+ "type": "coprocessor",
184
+ "level": "high",
185
+ "weight": 8
186
+ },
187
+ {
188
+ "name": "EVE_CoCmd_flashRead_flush",
189
+ "type": "coprocessor",
190
+ "level": "high",
191
+ "weight": 8
192
+ },
193
+ {
194
+ "name": "EVE_CoCmd_flashSource",
195
+ "type": "coprocessor",
196
+ "level": "high",
197
+ "weight": 8
198
+ },
199
+ {
200
+ "name": "EVE_CoCmd_flashSpiDesel",
201
+ "type": "coprocessor",
202
+ "level": "high",
203
+ "weight": 8
204
+ },
205
+ {
206
+ "name": "EVE_CoCmd_flashSpiRx",
207
+ "type": "coprocessor",
208
+ "level": "high",
209
+ "weight": 8
210
+ },
211
+ {
212
+ "name": "EVE_CoCmd_flashSpiTx",
213
+ "type": "coprocessor",
214
+ "level": "high",
215
+ "weight": 8
216
+ },
217
+ {
218
+ "name": "EVE_CoCmd_flashUpdate",
219
+ "type": "coprocessor",
220
+ "level": "high",
221
+ "weight": 8
222
+ },
223
+ {
224
+ "name": "EVE_CoCmd_flashWrite",
225
+ "type": "coprocessor",
226
+ "level": "high",
227
+ "weight": 8
228
+ },
229
+ {
230
+ "name": "EVE_CoCmd_inflate",
231
+ "type": "coprocessor",
232
+ "level": "high",
233
+ "weight": 8
234
+ },
235
+ {
236
+ "name": "EVE_CoCmd_inflate2",
237
+ "type": "coprocessor",
238
+ "level": "high",
239
+ "weight": 8
240
+ },
241
+ {
242
+ "name": "EVE_CoCmd_loadImage",
243
+ "type": "coprocessor",
244
+ "level": "high",
245
+ "weight": 8
246
+ },
247
+ {
248
+ "name": "EVE_CoCmd_mediaFifo",
249
+ "type": "coprocessor",
250
+ "level": "high",
251
+ "weight": 8
252
+ },
253
+ {
254
+ "name": "EVE_CoCmd_playVideo",
255
+ "type": "coprocessor",
256
+ "level": "high",
257
+ "weight": 8
258
+ }
259
+ ],
260
+ "samples": [
261
+ "sampleapp_animation",
262
+ "sampleapp_bitmap",
263
+ "sampleapp_flash",
264
+ "sampleapp_font",
265
+ "sampleapp_utility",
266
+ "sampleapp_video"
267
+ ],
268
+ "keywords": [
269
+ "asset",
270
+ "assets",
271
+ "load asset",
272
+ "resource loading"
273
+ ],
274
+ "registers": []
275
+ },
276
+ "astc": {
277
+ "commands": [],
278
+ "samples": [
279
+ "sampleapp_bitmap"
280
+ ],
281
+ "keywords": [
282
+ "astc"
283
+ ],
284
+ "registers": []
285
+ },
286
+ "audio": {
287
+ "commands": [
288
+ {
289
+ "name": "Play_MuteSound",
290
+ "type": "helper",
291
+ "level": "high",
292
+ "weight": 10
293
+ },
294
+ {
295
+ "name": "Play_Sound",
296
+ "type": "helper",
297
+ "level": "high",
298
+ "weight": 10
299
+ },
300
+ {
301
+ "name": "EVE_CoCmd_mediaFifo",
302
+ "type": "coprocessor",
303
+ "level": "high",
304
+ "weight": 8
305
+ }
306
+ ],
307
+ "samples": [
308
+ "sampleapp_sound",
309
+ "sampleapp_utility",
310
+ "sampleapp_video"
311
+ ],
312
+ "keywords": [
313
+ "audio",
314
+ "music",
315
+ "playback",
316
+ "sound"
317
+ ],
318
+ "registers": [
319
+ "OPT_SOUND",
320
+ "REG_PLAY_CONTROL",
321
+ "REG_PLAYBACK_FORMAT",
322
+ "REG_PLAYBACK_FREQ",
323
+ "REG_PLAYBACK_LENGTH",
324
+ "REG_PLAYBACK_LOOP",
325
+ "REG_PLAYBACK_PAUSE",
326
+ "REG_PLAYBACK_PLAY",
327
+ "REG_PLAYBACK_READPTR",
328
+ "REG_PLAYBACK_START",
329
+ "REG_SOUND",
330
+ "REG_VOL_PB",
331
+ "REG_VOL_SOUND"
332
+ ]
333
+ },
334
+ "avi": {
335
+ "commands": [],
336
+ "samples": [
337
+ "sampleapp_video"
338
+ ],
339
+ "keywords": [
340
+ "avi"
341
+ ],
342
+ "registers": []
343
+ },
344
+ "background": {
345
+ "commands": [
346
+ {
347
+ "name": "EVE_CoDl_clear",
348
+ "type": "display_list",
349
+ "level": "high",
350
+ "weight": 8
351
+ },
352
+ {
353
+ "name": "EVE_CoDl_clearColorA",
354
+ "type": "display_list",
355
+ "level": "high",
356
+ "weight": 8
357
+ },
358
+ {
359
+ "name": "EVE_CoDl_clearColorArgb_ex",
360
+ "type": "display_list",
361
+ "level": "high",
362
+ "weight": 8
363
+ },
364
+ {
365
+ "name": "EVE_CoDl_clearColorRgb",
366
+ "type": "display_list",
367
+ "level": "high",
368
+ "weight": 8
369
+ },
370
+ {
371
+ "name": "EVE_CoDl_clearColorRgb_ex",
372
+ "type": "display_list",
373
+ "level": "high",
374
+ "weight": 8
375
+ },
376
+ {
377
+ "name": "EVE_CoDl_clearStencil",
378
+ "type": "display_list",
379
+ "level": "high",
380
+ "weight": 8
381
+ },
382
+ {
383
+ "name": "EVE_CoDl_clearTag",
384
+ "type": "display_list",
385
+ "level": "high",
386
+ "weight": 8
387
+ }
388
+ ],
389
+ "samples": [],
390
+ "keywords": [
391
+ "background"
392
+ ],
393
+ "registers": []
394
+ },
395
+ "bitmap": {
396
+ "commands": [
397
+ {
398
+ "name": "EVE_CoCmd_bitmapTransform",
399
+ "type": "coprocessor",
400
+ "level": "high",
401
+ "weight": 8
402
+ },
403
+ {
404
+ "name": "EVE_CoCmd_getImage",
405
+ "type": "coprocessor",
406
+ "level": "high",
407
+ "weight": 8
408
+ },
409
+ {
410
+ "name": "EVE_CoCmd_getMatrix",
411
+ "type": "coprocessor",
412
+ "level": "high",
413
+ "weight": 8
414
+ },
415
+ {
416
+ "name": "EVE_CoCmd_getProps",
417
+ "type": "coprocessor",
418
+ "level": "high",
419
+ "weight": 8
420
+ },
421
+ {
422
+ "name": "EVE_CoCmd_loadIdentity",
423
+ "type": "coprocessor",
424
+ "level": "high",
425
+ "weight": 8
426
+ },
427
+ {
428
+ "name": "EVE_CoCmd_loadImage",
429
+ "type": "coprocessor",
430
+ "level": "high",
431
+ "weight": 8
432
+ },
433
+ {
434
+ "name": "EVE_CoCmd_mediaFifo",
435
+ "type": "coprocessor",
436
+ "level": "high",
437
+ "weight": 8
438
+ },
439
+ {
440
+ "name": "EVE_CoCmd_rotate",
441
+ "type": "coprocessor",
442
+ "level": "high",
443
+ "weight": 8
444
+ },
445
+ {
446
+ "name": "EVE_CoCmd_rotateAround",
447
+ "type": "coprocessor",
448
+ "level": "high",
449
+ "weight": 8
450
+ },
451
+ {
452
+ "name": "EVE_CoCmd_scale",
453
+ "type": "coprocessor",
454
+ "level": "high",
455
+ "weight": 8
456
+ },
457
+ {
458
+ "name": "EVE_CoCmd_setBitmap",
459
+ "type": "coprocessor",
460
+ "level": "high",
461
+ "weight": 8
462
+ },
463
+ {
464
+ "name": "EVE_CoCmd_setMatrix",
465
+ "type": "coprocessor",
466
+ "level": "high",
467
+ "weight": 8
468
+ },
469
+ {
470
+ "name": "EVE_CoCmd_setScratch",
471
+ "type": "coprocessor",
472
+ "level": "high",
473
+ "weight": 8
474
+ },
475
+ {
476
+ "name": "EVE_CoCmd_translate",
477
+ "type": "coprocessor",
478
+ "level": "high",
479
+ "weight": 8
480
+ },
481
+ {
482
+ "name": "EVE_CoDl_alphaFunc",
483
+ "type": "display_list",
484
+ "level": "high",
485
+ "weight": 8
486
+ },
487
+ {
488
+ "name": "EVE_CoDl_begin",
489
+ "type": "display_list",
490
+ "level": "high",
491
+ "weight": 8
492
+ },
493
+ {
494
+ "name": "EVE_CoDl_bitmapExtFormat",
495
+ "type": "display_list",
496
+ "level": "high",
497
+ "weight": 8
498
+ },
499
+ {
500
+ "name": "EVE_CoDl_bitmapHandle",
501
+ "type": "display_list",
502
+ "level": "high",
503
+ "weight": 8
504
+ },
505
+ {
506
+ "name": "EVE_CoDl_bitmapLayout",
507
+ "type": "display_list",
508
+ "level": "high",
509
+ "weight": 8
510
+ },
511
+ {
512
+ "name": "EVE_CoDl_bitmapSize",
513
+ "type": "display_list",
514
+ "level": "high",
515
+ "weight": 8
516
+ },
517
+ {
518
+ "name": "EVE_CoDl_bitmapSource",
519
+ "type": "display_list",
520
+ "level": "high",
521
+ "weight": 8
522
+ },
523
+ {
524
+ "name": "EVE_CoDl_bitmapSource_ex",
525
+ "type": "display_list",
526
+ "level": "high",
527
+ "weight": 8
528
+ },
529
+ {
530
+ "name": "EVE_CoDl_bitmapSwizzle",
531
+ "type": "display_list",
532
+ "level": "high",
533
+ "weight": 8
534
+ },
535
+ {
536
+ "name": "EVE_CoDl_bitmapTransform_ex",
537
+ "type": "display_list",
538
+ "level": "high",
539
+ "weight": 8
540
+ },
541
+ {
542
+ "name": "EVE_CoDl_bitmapTransformA",
543
+ "type": "display_list",
544
+ "level": "high",
545
+ "weight": 8
546
+ },
547
+ {
548
+ "name": "EVE_CoDl_bitmapTransformA_ex",
549
+ "type": "display_list",
550
+ "level": "high",
551
+ "weight": 8
552
+ },
553
+ {
554
+ "name": "EVE_CoDl_bitmapTransformB",
555
+ "type": "display_list",
556
+ "level": "high",
557
+ "weight": 8
558
+ },
559
+ {
560
+ "name": "EVE_CoDl_bitmapTransformB_ex",
561
+ "type": "display_list",
562
+ "level": "high",
563
+ "weight": 8
564
+ },
565
+ {
566
+ "name": "EVE_CoDl_bitmapTransformC",
567
+ "type": "display_list",
568
+ "level": "high",
569
+ "weight": 8
570
+ },
571
+ {
572
+ "name": "EVE_CoDl_bitmapTransformD",
573
+ "type": "display_list",
574
+ "level": "high",
575
+ "weight": 8
576
+ },
577
+ {
578
+ "name": "EVE_CoDl_bitmapTransformD_ex",
579
+ "type": "display_list",
580
+ "level": "high",
581
+ "weight": 8
582
+ },
583
+ {
584
+ "name": "EVE_CoDl_bitmapTransformE",
585
+ "type": "display_list",
586
+ "level": "high",
587
+ "weight": 8
588
+ },
589
+ {
590
+ "name": "EVE_CoDl_bitmapTransformE_ex",
591
+ "type": "display_list",
592
+ "level": "high",
593
+ "weight": 8
594
+ },
595
+ {
596
+ "name": "EVE_CoDl_bitmapTransformF",
597
+ "type": "display_list",
598
+ "level": "high",
599
+ "weight": 8
600
+ },
601
+ {
602
+ "name": "EVE_CoDl_cell",
603
+ "type": "display_list",
604
+ "level": "high",
605
+ "weight": 8
606
+ },
607
+ {
608
+ "name": "EVE_CoDl_end",
609
+ "type": "display_list",
610
+ "level": "high",
611
+ "weight": 8
612
+ },
613
+ {
614
+ "name": "EVE_CoDl_paletteSource",
615
+ "type": "display_list",
616
+ "level": "high",
617
+ "weight": 8
618
+ }
619
+ ],
620
+ "samples": [
621
+ "sampleapp_bitmap",
622
+ "sampleapp_font",
623
+ "sampleapp_primitives",
624
+ "sampleapp_utility",
625
+ "sampleapp_video",
626
+ "sampleapp_widget"
627
+ ],
628
+ "keywords": [
629
+ "bitmap",
630
+ "bitmap graphics",
631
+ "texture"
632
+ ],
633
+ "registers": [
634
+ "CMD_BITMAP_TRANSFORM",
635
+ "CMD_GETIMAGE",
636
+ "CMD_LOADIMAGE",
637
+ "CMD_SETBITMAP"
638
+ ]
639
+ },
640
+ "button": {
641
+ "commands": [
642
+ {
643
+ "name": "EVE_CoCmd_button",
644
+ "type": "coprocessor",
645
+ "level": "high",
646
+ "weight": 8
647
+ },
648
+ {
649
+ "name": "EVE_CoCmd_gradColor",
650
+ "type": "coprocessor",
651
+ "level": "high",
652
+ "weight": 8
653
+ }
654
+ ],
655
+ "samples": [
656
+ "sampleapp_animation",
657
+ "sampleapp_touch",
658
+ "sampleapp_utility",
659
+ "sampleapp_video",
660
+ "sampleapp_widget"
661
+ ],
662
+ "keywords": [
663
+ "button"
664
+ ],
665
+ "registers": []
666
+ },
667
+ "calibration": {
668
+ "commands": [
669
+ {
670
+ "name": "Calibration_Restore",
671
+ "type": "helper",
672
+ "level": "high",
673
+ "weight": 10
674
+ },
675
+ {
676
+ "name": "Calibration_Save",
677
+ "type": "helper",
678
+ "level": "high",
679
+ "weight": 10
680
+ },
681
+ {
682
+ "name": "Esd_Calibrate",
683
+ "type": "helper",
684
+ "level": "high",
685
+ "weight": 10
686
+ },
687
+ {
688
+ "name": "Init_CapacitiveTouch",
689
+ "type": "helper",
690
+ "level": "high",
691
+ "weight": 10
692
+ },
693
+ {
694
+ "name": "EVE_CoCmd_bgColor",
695
+ "type": "coprocessor",
696
+ "level": "high",
697
+ "weight": 8
698
+ },
699
+ {
700
+ "name": "EVE_CoCmd_calibrate",
701
+ "type": "coprocessor",
702
+ "level": "high",
703
+ "weight": 8
704
+ },
705
+ {
706
+ "name": "EVE_CoCmd_calibrateSub",
707
+ "type": "coprocessor",
708
+ "level": "high",
709
+ "weight": 8
710
+ }
711
+ ],
712
+ "samples": [
713
+ "sampleapp_animation",
714
+ "sampleapp_bitmap",
715
+ "sampleapp_flash",
716
+ "sampleapp_font",
717
+ "sampleapp_power",
718
+ "sampleapp_primitives",
719
+ "sampleapp_sound",
720
+ "sampleapp_touch",
721
+ "sampleapp_utility",
722
+ "sampleapp_video",
723
+ "sampleapp_widget"
724
+ ],
725
+ "keywords": [
726
+ "calibrate",
727
+ "calibration",
728
+ "touch calibration"
729
+ ],
730
+ "registers": []
731
+ },
732
+ "clock": {
733
+ "commands": [
734
+ {
735
+ "name": "EVE_CoCmd_clock",
736
+ "type": "coprocessor",
737
+ "level": "high",
738
+ "weight": 8
739
+ }
740
+ ],
741
+ "samples": [
742
+ "sampleapp_power",
743
+ "sampleapp_widget"
744
+ ],
745
+ "keywords": [
746
+ "clock"
747
+ ],
748
+ "registers": []
749
+ },
750
+ "command": {
751
+ "commands": [
752
+ {
753
+ "name": "EVE_CoCmd_append",
754
+ "type": "coprocessor",
755
+ "level": "high",
756
+ "weight": 8
757
+ },
758
+ {
759
+ "name": "EVE_CoCmd_appendF",
760
+ "type": "coprocessor",
761
+ "level": "high",
762
+ "weight": 8
763
+ },
764
+ {
765
+ "name": "EVE_CoCmd_copyList",
766
+ "type": "coprocessor",
767
+ "level": "high",
768
+ "weight": 8
769
+ },
770
+ {
771
+ "name": "EVE_CoCmd_endList",
772
+ "type": "coprocessor",
773
+ "level": "high",
774
+ "weight": 8
775
+ }
776
+ ],
777
+ "samples": [
778
+ "sampleapp_primitives",
779
+ "sampleapp_utility"
780
+ ],
781
+ "keywords": [
782
+ "command"
783
+ ],
784
+ "registers": []
785
+ },
786
+ "control": {
787
+ "commands": [
788
+ {
789
+ "name": "EVE_CoCmd_apiLevel",
790
+ "type": "coprocessor",
791
+ "level": "high",
792
+ "weight": 8
793
+ },
794
+ {
795
+ "name": "EVE_CoCmd_callList",
796
+ "type": "coprocessor",
797
+ "level": "high",
798
+ "weight": 8
799
+ },
800
+ {
801
+ "name": "EVE_CoCmd_coldStart",
802
+ "type": "coprocessor",
803
+ "level": "high",
804
+ "weight": 8
805
+ },
806
+ {
807
+ "name": "EVE_CoCmd_copyList",
808
+ "type": "coprocessor",
809
+ "level": "high",
810
+ "weight": 8
811
+ },
812
+ {
813
+ "name": "EVE_CoCmd_endList",
814
+ "type": "coprocessor",
815
+ "level": "high",
816
+ "weight": 8
817
+ },
818
+ {
819
+ "name": "EVE_CoCmd_hsf",
820
+ "type": "coprocessor",
821
+ "level": "high",
822
+ "weight": 8
823
+ },
824
+ {
825
+ "name": "EVE_CoCmd_interrupt",
826
+ "type": "coprocessor",
827
+ "level": "high",
828
+ "weight": 8
829
+ },
830
+ {
831
+ "name": "EVE_CoCmd_newList",
832
+ "type": "coprocessor",
833
+ "level": "high",
834
+ "weight": 8
835
+ },
836
+ {
837
+ "name": "EVE_CoCmd_nop",
838
+ "type": "coprocessor",
839
+ "level": "high",
840
+ "weight": 8
841
+ },
842
+ {
843
+ "name": "EVE_CoCmd_pclkFreq",
844
+ "type": "coprocessor",
845
+ "level": "high",
846
+ "weight": 8
847
+ },
848
+ {
849
+ "name": "EVE_CoCmd_return",
850
+ "type": "coprocessor",
851
+ "level": "high",
852
+ "weight": 8
853
+ },
854
+ {
855
+ "name": "EVE_CoCmd_stop",
856
+ "type": "coprocessor",
857
+ "level": "high",
858
+ "weight": 8
859
+ },
860
+ {
861
+ "name": "EVE_CoCmd_swap",
862
+ "type": "coprocessor",
863
+ "level": "high",
864
+ "weight": 8
865
+ },
866
+ {
867
+ "name": "EVE_CoCmd_sync",
868
+ "type": "coprocessor",
869
+ "level": "high",
870
+ "weight": 8
871
+ },
872
+ {
873
+ "name": "EVE_CoCmd_wait",
874
+ "type": "coprocessor",
875
+ "level": "high",
876
+ "weight": 8
877
+ },
878
+ {
879
+ "name": "EVE_CoDl_call",
880
+ "type": "display_list",
881
+ "level": "high",
882
+ "weight": 8
883
+ },
884
+ {
885
+ "name": "EVE_CoDl_display",
886
+ "type": "display_list",
887
+ "level": "high",
888
+ "weight": 8
889
+ },
890
+ {
891
+ "name": "EVE_CoDl_jump",
892
+ "type": "display_list",
893
+ "level": "high",
894
+ "weight": 8
895
+ },
896
+ {
897
+ "name": "EVE_CoDl_macro",
898
+ "type": "display_list",
899
+ "level": "high",
900
+ "weight": 8
901
+ },
902
+ {
903
+ "name": "EVE_CoDl_nop",
904
+ "type": "display_list",
905
+ "level": "high",
906
+ "weight": 8
907
+ },
908
+ {
909
+ "name": "EVE_CoDl_restoreContext",
910
+ "type": "display_list",
911
+ "level": "high",
912
+ "weight": 8
913
+ },
914
+ {
915
+ "name": "EVE_CoDl_return",
916
+ "type": "display_list",
917
+ "level": "high",
918
+ "weight": 8
919
+ },
920
+ {
921
+ "name": "EVE_CoDl_saveContext",
922
+ "type": "display_list",
923
+ "level": "high",
924
+ "weight": 8
925
+ },
926
+ {
927
+ "name": "EVE_Hal_hostCommand",
928
+ "type": "hal",
929
+ "level": "low",
930
+ "weight": 1
931
+ },
932
+ {
933
+ "name": "EVE_Hal_hostCommandExt3",
934
+ "type": "hal",
935
+ "level": "low",
936
+ "weight": 1
937
+ }
938
+ ],
939
+ "samples": [
940
+ "sampleapp_flash",
941
+ "sampleapp_utility",
942
+ "sampleapp_video"
943
+ ],
944
+ "keywords": [
945
+ "control"
946
+ ],
947
+ "registers": []
948
+ },
949
+ "coprocessor": {
950
+ "commands": [],
951
+ "samples": [],
952
+ "keywords": [
953
+ "cmd fifo",
954
+ "co-processor",
955
+ "command fifo",
956
+ "coprocessor"
957
+ ],
958
+ "registers": [
959
+ "CMD_ANIMDRAW",
960
+ "CMD_ANIMFRAME",
961
+ "CMD_ANIMFRAMERAM",
962
+ "CMD_ANIMSTART",
963
+ "CMD_ANIMSTARTRAM",
964
+ "CMD_ANIMSTOP",
965
+ "CMD_ANIMXY",
966
+ "CMD_APILEVEL",
967
+ "CMD_APPEND",
968
+ "CMD_APPENDF",
969
+ "CMD_BGCOLOR",
970
+ "CMD_BITMAP_TRANSFORM",
971
+ "CMD_BUTTON",
972
+ "CMD_CALIBRATE",
973
+ "CMD_CALIBRATESUB",
974
+ "CMD_CALLLIST",
975
+ "CMD_CLEARCACHE",
976
+ "CMD_CLOCK",
977
+ "CMD_COLDSTART",
978
+ "CMD_CSKETCH",
979
+ "CMD_DIAL",
980
+ "CMD_DLSTART",
981
+ "CMD_ENDLIST",
982
+ "CMD_FGCOLOR",
983
+ "CMD_FILLWIDTH",
984
+ "CMD_FLASHATTACH",
985
+ "CMD_FLASHDETACH",
986
+ "CMD_FLASHERASE",
987
+ "CMD_FLASHFAST",
988
+ "CMD_FLASHPROGRAM",
989
+ "CMD_FLASHREAD",
990
+ "CMD_FLASHSOURCE",
991
+ "CMD_FLASHSPIDESEL",
992
+ "CMD_FLASHSPIRX",
993
+ "CMD_FLASHSPITX",
994
+ "CMD_FLASHUPDATE",
995
+ "CMD_FLASHWRITE",
996
+ "CMD_FONTCACHE",
997
+ "CMD_FONTCACHEQUERY",
998
+ "CMD_GAUGE",
999
+ "CMD_GETIMAGE",
1000
+ "CMD_GETMATRIX",
1001
+ "CMD_GETPROPS",
1002
+ "CMD_GETPTR",
1003
+ "CMD_GRADCOLOR",
1004
+ "CMD_GRADIENT",
1005
+ "CMD_GRADIENTA",
1006
+ "CMD_HSF",
1007
+ "CMD_INFLATE",
1008
+ "CMD_INFLATE2",
1009
+ "CMD_INTERRUPT",
1010
+ "CMD_KEYS",
1011
+ "CMD_LOADIDENTITY",
1012
+ "CMD_LOADIMAGE",
1013
+ "CMD_LOGO",
1014
+ "CMD_MEDIAFIFO",
1015
+ "CMD_MEMCPY",
1016
+ "CMD_MEMCRC",
1017
+ "CMD_MEMSET",
1018
+ "CMD_MEMWRITE",
1019
+ "CMD_MEMZERO",
1020
+ "CMD_NEWLIST",
1021
+ "CMD_NOP",
1022
+ "CMD_NUMBER",
1023
+ "CMD_PCLKFREQ",
1024
+ "CMD_PLAYVIDEO",
1025
+ "CMD_PROGRESS",
1026
+ "CMD_REGREAD",
1027
+ "CMD_RESETFONTS",
1028
+ "CMD_RETURN",
1029
+ "CMD_ROMFONT",
1030
+ "CMD_ROTATE",
1031
+ "CMD_ROTATEAROUND",
1032
+ "CMD_RUNANIM",
1033
+ "CMD_SCALE",
1034
+ "CMD_SCREENSAVER",
1035
+ "CMD_SCROLLBAR",
1036
+ "CMD_SETBASE",
1037
+ "CMD_SETBITMAP",
1038
+ "CMD_SETFONT",
1039
+ "CMD_SETFONT2",
1040
+ "CMD_SETMATRIX",
1041
+ "CMD_SETROTATE",
1042
+ "CMD_SETSCRATCH",
1043
+ "CMD_SKETCH",
1044
+ "CMD_SLIDER",
1045
+ "CMD_SNAPSHOT",
1046
+ "CMD_SNAPSHOT2",
1047
+ "CMD_SPINNER",
1048
+ "CMD_STOP",
1049
+ "CMD_SWAP",
1050
+ "CMD_SYNC",
1051
+ "CMD_TESTCARD",
1052
+ "CMD_TEXT",
1053
+ "CMD_TOGGLE",
1054
+ "CMD_TRACK",
1055
+ "CMD_TRANSLATE",
1056
+ "CMD_VIDEOFRAME",
1057
+ "CMD_VIDEOSTART",
1058
+ "CMD_VIDEOSTARTF",
1059
+ "CMD_WAIT",
1060
+ "RAM_CMD",
1061
+ "REG_BUSYBITS",
1062
+ "REG_CMD_DL",
1063
+ "REG_CMD_READ",
1064
+ "REG_CMD_WRITE",
1065
+ "REG_CMDB_SPACE",
1066
+ "REG_CMDB_WRITE",
1067
+ "REG_FULLBUSYBITS"
1068
+ ]
1069
+ },
1070
+ "dial": {
1071
+ "commands": [
1072
+ {
1073
+ "name": "EVE_CoCmd_dial",
1074
+ "type": "coprocessor",
1075
+ "level": "high",
1076
+ "weight": 8
1077
+ }
1078
+ ],
1079
+ "samples": [
1080
+ "sampleapp_touch",
1081
+ "sampleapp_widget"
1082
+ ],
1083
+ "keywords": [
1084
+ "dial"
1085
+ ],
1086
+ "registers": []
1087
+ },
1088
+ "display": {
1089
+ "commands": [],
1090
+ "samples": [],
1091
+ "keywords": [
1092
+ "display",
1093
+ "display timing",
1094
+ "lcd",
1095
+ "screen"
1096
+ ],
1097
+ "registers": [
1098
+ "EVE_HAL_REG_CMD_READ",
1099
+ "EVE_HAL_REG_CMDB_SPACE",
1100
+ "EVE_HAL_REG_CPURESET",
1101
+ "EVE_HAL_REG_CRC",
1102
+ "EVE_HAL_REG_DATESTAMP",
1103
+ "EVE_HAL_REG_ID",
1104
+ "EVE_HAL_REG_J1_INT",
1105
+ "EVE_HAL_REG_TOUCH_DIRECT_XY",
1106
+ "EVE_HAL_REG_TOUCH_TRANSFORM_A",
1107
+ "EVE_HAL_REG_TRACKER",
1108
+ "EVE_HAL_REG_TRIM",
1109
+ "RAM_DL",
1110
+ "RAM_PAL",
1111
+ "REG_AH_HCYCLE_MAX",
1112
+ "REG_CSPREAD",
1113
+ "REG_DITHER",
1114
+ "REG_DLSWAP",
1115
+ "REG_FRAMES",
1116
+ "REG_HCYCLE",
1117
+ "REG_HOFFSET",
1118
+ "REG_HSF_F00",
1119
+ "REG_HSF_F02",
1120
+ "REG_HSF_F03",
1121
+ "REG_HSF_F10",
1122
+ "REG_HSF_F11",
1123
+ "REG_HSF_F12",
1124
+ "REG_HSF_F13",
1125
+ "REG_HSF_FSCALE",
1126
+ "REG_HSF_FT1",
1127
+ "REG_HSF_HSIZE",
1128
+ "REG_HSIZE",
1129
+ "REG_HSYNC0",
1130
+ "REG_HSYNC1",
1131
+ "REG_MACRO_0",
1132
+ "REG_MACRO_1",
1133
+ "REG_OUTBITS",
1134
+ "REG_PCLK",
1135
+ "REG_PCLK_2X",
1136
+ "REG_PCLK_FREQ",
1137
+ "REG_PCLK_POL",
1138
+ "REG_PWM_DUTY",
1139
+ "REG_PWM_HZ",
1140
+ "REG_RASTERY",
1141
+ "REG_RENDERMODE",
1142
+ "REG_ROTATE",
1143
+ "REG_SNAPFORMAT",
1144
+ "REG_SNAPSHOT",
1145
+ "REG_SNAPY",
1146
+ "REG_SWIZZLE",
1147
+ "REG_UNDERRUN",
1148
+ "REG_VCYCLE",
1149
+ "REG_VOFFSET",
1150
+ "REG_VSIZE",
1151
+ "REG_VSYNC0",
1152
+ "REG_VSYNC1",
1153
+ "ROMFONT_TABLEADDRESS"
1154
+ ]
1155
+ },
1156
+ "display_list": {
1157
+ "commands": [],
1158
+ "samples": [
1159
+ "sampleapp_utility"
1160
+ ],
1161
+ "keywords": [
1162
+ "display list",
1163
+ "display_list",
1164
+ "display-list",
1165
+ "displaylist",
1166
+ "dl command"
1167
+ ],
1168
+ "registers": []
1169
+ },
1170
+ "drawing": {
1171
+ "commands": [
1172
+ {
1173
+ "name": "Display_End",
1174
+ "type": "helper",
1175
+ "level": "high",
1176
+ "weight": 10
1177
+ },
1178
+ {
1179
+ "name": "Display_Start",
1180
+ "type": "helper",
1181
+ "level": "high",
1182
+ "weight": 10
1183
+ },
1184
+ {
1185
+ "name": "Display_StartColor",
1186
+ "type": "helper",
1187
+ "level": "high",
1188
+ "weight": 10
1189
+ },
1190
+ {
1191
+ "name": "EVE_CoDl_begin",
1192
+ "type": "display_list",
1193
+ "level": "high",
1194
+ "weight": 8
1195
+ },
1196
+ {
1197
+ "name": "EVE_CoDl_end",
1198
+ "type": "display_list",
1199
+ "level": "high",
1200
+ "weight": 8
1201
+ },
1202
+ {
1203
+ "name": "EVE_CoDl_vertex2f",
1204
+ "type": "display_list",
1205
+ "level": "high",
1206
+ "weight": 8
1207
+ },
1208
+ {
1209
+ "name": "EVE_CoDl_vertex2f_0",
1210
+ "type": "display_list",
1211
+ "level": "high",
1212
+ "weight": 8
1213
+ },
1214
+ {
1215
+ "name": "EVE_CoDl_vertex2f_2",
1216
+ "type": "display_list",
1217
+ "level": "high",
1218
+ "weight": 8
1219
+ },
1220
+ {
1221
+ "name": "EVE_CoDl_vertex2f_4",
1222
+ "type": "display_list",
1223
+ "level": "high",
1224
+ "weight": 8
1225
+ },
1226
+ {
1227
+ "name": "EVE_CoDl_vertex2ii",
1228
+ "type": "display_list",
1229
+ "level": "high",
1230
+ "weight": 8
1231
+ }
1232
+ ],
1233
+ "samples": [
1234
+ "sampleapp_animation",
1235
+ "sampleapp_bitmap",
1236
+ "sampleapp_flash",
1237
+ "sampleapp_font",
1238
+ "sampleapp_power",
1239
+ "sampleapp_primitives",
1240
+ "sampleapp_utility",
1241
+ "sampleapp_video",
1242
+ "sampleapp_widget"
1243
+ ],
1244
+ "keywords": [
1245
+ "drawing"
1246
+ ],
1247
+ "registers": []
1248
+ },
1249
+ "edge_strip": {
1250
+ "commands": [
1251
+ {
1252
+ "name": "EVE_CoDl_begin",
1253
+ "type": "display_list",
1254
+ "level": "high",
1255
+ "weight": 8
1256
+ },
1257
+ {
1258
+ "name": "EVE_CoDl_end",
1259
+ "type": "display_list",
1260
+ "level": "high",
1261
+ "weight": 8
1262
+ }
1263
+ ],
1264
+ "samples": [],
1265
+ "keywords": [
1266
+ "edge strip",
1267
+ "edge_strip",
1268
+ "edge-strip",
1269
+ "edgestrip"
1270
+ ],
1271
+ "registers": []
1272
+ },
1273
+ "flash": {
1274
+ "commands": [
1275
+ {
1276
+ "name": "Flash_Init",
1277
+ "type": "helper",
1278
+ "level": "high",
1279
+ "weight": 10
1280
+ },
1281
+ {
1282
+ "name": "FlashHelper_ClearCache",
1283
+ "type": "helper",
1284
+ "level": "high",
1285
+ "weight": 10
1286
+ },
1287
+ {
1288
+ "name": "FlashHelper_Erase",
1289
+ "type": "helper",
1290
+ "level": "high",
1291
+ "weight": 10
1292
+ },
1293
+ {
1294
+ "name": "FlashHelper_flashWriteExt",
1295
+ "type": "helper",
1296
+ "level": "high",
1297
+ "weight": 10
1298
+ },
1299
+ {
1300
+ "name": "FlashHelper_GetState",
1301
+ "type": "helper",
1302
+ "level": "high",
1303
+ "weight": 10
1304
+ },
1305
+ {
1306
+ "name": "FlashHelper_Read",
1307
+ "type": "helper",
1308
+ "level": "high",
1309
+ "weight": 10
1310
+ },
1311
+ {
1312
+ "name": "FlashHelper_SwitchFullMode",
1313
+ "type": "helper",
1314
+ "level": "high",
1315
+ "weight": 10
1316
+ },
1317
+ {
1318
+ "name": "FlashHelper_SwitchState",
1319
+ "type": "helper",
1320
+ "level": "high",
1321
+ "weight": 10
1322
+ },
1323
+ {
1324
+ "name": "FlashHelper_Update",
1325
+ "type": "helper",
1326
+ "level": "high",
1327
+ "weight": 10
1328
+ },
1329
+ {
1330
+ "name": "FlashHelper_Write",
1331
+ "type": "helper",
1332
+ "level": "high",
1333
+ "weight": 10
1334
+ },
1335
+ {
1336
+ "name": "EVE_CoCmd_animFrame",
1337
+ "type": "coprocessor",
1338
+ "level": "high",
1339
+ "weight": 8
1340
+ },
1341
+ {
1342
+ "name": "EVE_CoCmd_appendF",
1343
+ "type": "coprocessor",
1344
+ "level": "high",
1345
+ "weight": 8
1346
+ },
1347
+ {
1348
+ "name": "EVE_CoCmd_clearCache",
1349
+ "type": "coprocessor",
1350
+ "level": "high",
1351
+ "weight": 8
1352
+ },
1353
+ {
1354
+ "name": "EVE_CoCmd_flashAttach",
1355
+ "type": "coprocessor",
1356
+ "level": "high",
1357
+ "weight": 8
1358
+ },
1359
+ {
1360
+ "name": "EVE_CoCmd_flashDetach",
1361
+ "type": "coprocessor",
1362
+ "level": "high",
1363
+ "weight": 8
1364
+ },
1365
+ {
1366
+ "name": "EVE_CoCmd_flashErase",
1367
+ "type": "coprocessor",
1368
+ "level": "high",
1369
+ "weight": 8
1370
+ },
1371
+ {
1372
+ "name": "EVE_CoCmd_flashFast",
1373
+ "type": "coprocessor",
1374
+ "level": "high",
1375
+ "weight": 8
1376
+ },
1377
+ {
1378
+ "name": "EVE_CoCmd_flashProgram",
1379
+ "type": "coprocessor",
1380
+ "level": "high",
1381
+ "weight": 8
1382
+ },
1383
+ {
1384
+ "name": "EVE_CoCmd_flashRead",
1385
+ "type": "coprocessor",
1386
+ "level": "high",
1387
+ "weight": 8
1388
+ },
1389
+ {
1390
+ "name": "EVE_CoCmd_flashRead_flush",
1391
+ "type": "coprocessor",
1392
+ "level": "high",
1393
+ "weight": 8
1394
+ },
1395
+ {
1396
+ "name": "EVE_CoCmd_flashSource",
1397
+ "type": "coprocessor",
1398
+ "level": "high",
1399
+ "weight": 8
1400
+ },
1401
+ {
1402
+ "name": "EVE_CoCmd_flashSpiDesel",
1403
+ "type": "coprocessor",
1404
+ "level": "high",
1405
+ "weight": 8
1406
+ },
1407
+ {
1408
+ "name": "EVE_CoCmd_flashSpiRx",
1409
+ "type": "coprocessor",
1410
+ "level": "high",
1411
+ "weight": 8
1412
+ },
1413
+ {
1414
+ "name": "EVE_CoCmd_flashSpiTx",
1415
+ "type": "coprocessor",
1416
+ "level": "high",
1417
+ "weight": 8
1418
+ },
1419
+ {
1420
+ "name": "EVE_CoCmd_flashUpdate",
1421
+ "type": "coprocessor",
1422
+ "level": "high",
1423
+ "weight": 8
1424
+ },
1425
+ {
1426
+ "name": "EVE_CoCmd_flashWrite",
1427
+ "type": "coprocessor",
1428
+ "level": "high",
1429
+ "weight": 8
1430
+ },
1431
+ {
1432
+ "name": "EVE_CoCmd_fontCache",
1433
+ "type": "coprocessor",
1434
+ "level": "high",
1435
+ "weight": 8
1436
+ },
1437
+ {
1438
+ "name": "EVE_CoCmd_fontCacheQuery",
1439
+ "type": "coprocessor",
1440
+ "level": "high",
1441
+ "weight": 8
1442
+ },
1443
+ {
1444
+ "name": "EVE_CoCmd_inflate",
1445
+ "type": "coprocessor",
1446
+ "level": "high",
1447
+ "weight": 8
1448
+ },
1449
+ {
1450
+ "name": "EVE_CoCmd_inflate2",
1451
+ "type": "coprocessor",
1452
+ "level": "high",
1453
+ "weight": 8
1454
+ },
1455
+ {
1456
+ "name": "EVE_CoCmd_loadImage",
1457
+ "type": "coprocessor",
1458
+ "level": "high",
1459
+ "weight": 8
1460
+ },
1461
+ {
1462
+ "name": "EVE_CoCmd_playVideo",
1463
+ "type": "coprocessor",
1464
+ "level": "high",
1465
+ "weight": 8
1466
+ },
1467
+ {
1468
+ "name": "EVE_CoCmd_videoStartF",
1469
+ "type": "coprocessor",
1470
+ "level": "high",
1471
+ "weight": 8
1472
+ },
1473
+ {
1474
+ "name": "EVE_CoDl_bitmapSource_ex",
1475
+ "type": "display_list",
1476
+ "level": "high",
1477
+ "weight": 8
1478
+ }
1479
+ ],
1480
+ "samples": [
1481
+ "sampleapp_animation",
1482
+ "sampleapp_bitmap",
1483
+ "sampleapp_flash",
1484
+ "sampleapp_font",
1485
+ "sampleapp_utility",
1486
+ "sampleapp_video"
1487
+ ],
1488
+ "keywords": [
1489
+ "external flash",
1490
+ "flash",
1491
+ "flash memory"
1492
+ ],
1493
+ "registers": [
1494
+ "CMD_APPENDF",
1495
+ "CMD_FLASHATTACH",
1496
+ "CMD_FLASHDETACH",
1497
+ "CMD_FLASHERASE",
1498
+ "CMD_FLASHFAST",
1499
+ "CMD_FLASHPROGRAM",
1500
+ "CMD_FLASHREAD",
1501
+ "CMD_FLASHSOURCE",
1502
+ "CMD_FLASHSPIDESEL",
1503
+ "CMD_FLASHSPIRX",
1504
+ "CMD_FLASHSPITX",
1505
+ "CMD_FLASHUPDATE",
1506
+ "CMD_FLASHWRITE",
1507
+ "CMD_VIDEOSTARTF",
1508
+ "OPT_FLASH",
1509
+ "REG_FLASH_DTR",
1510
+ "REG_FLASH_SIZE",
1511
+ "REG_FLASH_STATUS"
1512
+ ]
1513
+ },
1514
+ "font": {
1515
+ "commands": [
1516
+ {
1517
+ "name": "EVE_CoCmd_button",
1518
+ "type": "coprocessor",
1519
+ "level": "high",
1520
+ "weight": 8
1521
+ },
1522
+ {
1523
+ "name": "EVE_CoCmd_fontCache",
1524
+ "type": "coprocessor",
1525
+ "level": "high",
1526
+ "weight": 8
1527
+ },
1528
+ {
1529
+ "name": "EVE_CoCmd_fontCacheQuery",
1530
+ "type": "coprocessor",
1531
+ "level": "high",
1532
+ "weight": 8
1533
+ },
1534
+ {
1535
+ "name": "EVE_CoCmd_keys",
1536
+ "type": "coprocessor",
1537
+ "level": "high",
1538
+ "weight": 8
1539
+ },
1540
+ {
1541
+ "name": "EVE_CoCmd_resetFonts",
1542
+ "type": "coprocessor",
1543
+ "level": "high",
1544
+ "weight": 8
1545
+ },
1546
+ {
1547
+ "name": "EVE_CoCmd_romFont",
1548
+ "type": "coprocessor",
1549
+ "level": "high",
1550
+ "weight": 8
1551
+ },
1552
+ {
1553
+ "name": "EVE_CoCmd_setFont",
1554
+ "type": "coprocessor",
1555
+ "level": "high",
1556
+ "weight": 8
1557
+ },
1558
+ {
1559
+ "name": "EVE_CoCmd_setFont2",
1560
+ "type": "coprocessor",
1561
+ "level": "high",
1562
+ "weight": 8
1563
+ }
1564
+ ],
1565
+ "samples": [
1566
+ "sampleapp_animation",
1567
+ "sampleapp_font",
1568
+ "sampleapp_touch",
1569
+ "sampleapp_utility",
1570
+ "sampleapp_video",
1571
+ "sampleapp_widget"
1572
+ ],
1573
+ "keywords": [
1574
+ "font",
1575
+ "fonts",
1576
+ "typeface",
1577
+ "unicode"
1578
+ ],
1579
+ "registers": [
1580
+ "CMD_FONTCACHE",
1581
+ "CMD_FONTCACHEQUERY",
1582
+ "CMD_RESETFONTS",
1583
+ "CMD_ROMFONT",
1584
+ "CMD_SETFONT",
1585
+ "CMD_SETFONT2"
1586
+ ]
1587
+ },
1588
+ "gauge": {
1589
+ "commands": [
1590
+ {
1591
+ "name": "EVE_CoCmd_bgColor",
1592
+ "type": "coprocessor",
1593
+ "level": "high",
1594
+ "weight": 8
1595
+ },
1596
+ {
1597
+ "name": "EVE_CoCmd_gauge",
1598
+ "type": "coprocessor",
1599
+ "level": "high",
1600
+ "weight": 8
1601
+ }
1602
+ ],
1603
+ "samples": [
1604
+ "sampleapp_touch",
1605
+ "sampleapp_widget"
1606
+ ],
1607
+ "keywords": [
1608
+ "gauge"
1609
+ ],
1610
+ "registers": []
1611
+ },
1612
+ "general": {
1613
+ "commands": [
1614
+ {
1615
+ "name": "Gpu_Hal_Dec2Ascii",
1616
+ "type": "helper",
1617
+ "level": "high",
1618
+ "weight": 10
1619
+ },
1620
+ {
1621
+ "name": "Gpu_Init",
1622
+ "type": "helper",
1623
+ "level": "high",
1624
+ "weight": 10
1625
+ },
1626
+ {
1627
+ "name": "Gpu_Release",
1628
+ "type": "helper",
1629
+ "level": "high",
1630
+ "weight": 10
1631
+ },
1632
+ {
1633
+ "name": "Math_3D_ArbitraryRotate",
1634
+ "type": "helper",
1635
+ "level": "high",
1636
+ "weight": 10
1637
+ },
1638
+ {
1639
+ "name": "Math_3D_ArbitraryRotate2",
1640
+ "type": "helper",
1641
+ "level": "high",
1642
+ "weight": 10
1643
+ },
1644
+ {
1645
+ "name": "Math_3D_Backface_Find_Visible",
1646
+ "type": "helper",
1647
+ "level": "high",
1648
+ "weight": 10
1649
+ },
1650
+ {
1651
+ "name": "Math_Da",
1652
+ "type": "helper",
1653
+ "level": "high",
1654
+ "weight": 10
1655
+ },
1656
+ {
1657
+ "name": "Math_Points_Distance",
1658
+ "type": "helper",
1659
+ "level": "high",
1660
+ "weight": 10
1661
+ },
1662
+ {
1663
+ "name": "Math_Points_Nearby_NextX",
1664
+ "type": "helper",
1665
+ "level": "high",
1666
+ "weight": 10
1667
+ },
1668
+ {
1669
+ "name": "Math_Polarxy",
1670
+ "type": "helper",
1671
+ "level": "high",
1672
+ "weight": 10
1673
+ },
1674
+ {
1675
+ "name": "Math_Power",
1676
+ "type": "helper",
1677
+ "level": "high",
1678
+ "weight": 10
1679
+ },
1680
+ {
1681
+ "name": "Math_Qcos",
1682
+ "type": "helper",
1683
+ "level": "high",
1684
+ "weight": 10
1685
+ },
1686
+ {
1687
+ "name": "Math_Qsin",
1688
+ "type": "helper",
1689
+ "level": "high",
1690
+ "weight": 10
1691
+ },
1692
+ {
1693
+ "name": "EVE_Hal_close",
1694
+ "type": "hal",
1695
+ "level": "low",
1696
+ "weight": 1
1697
+ },
1698
+ {
1699
+ "name": "EVE_Hal_defaults",
1700
+ "type": "hal",
1701
+ "level": "low",
1702
+ "weight": 1
1703
+ },
1704
+ {
1705
+ "name": "EVE_Hal_hostCommand",
1706
+ "type": "hal",
1707
+ "level": "low",
1708
+ "weight": 1
1709
+ },
1710
+ {
1711
+ "name": "EVE_Hal_hostCommandExt3",
1712
+ "type": "hal",
1713
+ "level": "low",
1714
+ "weight": 1
1715
+ },
1716
+ {
1717
+ "name": "EVE_Hal_idle",
1718
+ "type": "hal",
1719
+ "level": "low",
1720
+ "weight": 1
1721
+ },
1722
+ {
1723
+ "name": "EVE_Hal_open",
1724
+ "type": "hal",
1725
+ "level": "low",
1726
+ "weight": 1
1727
+ },
1728
+ {
1729
+ "name": "EVE_Hal_rd16",
1730
+ "type": "hal",
1731
+ "level": "low",
1732
+ "weight": 1
1733
+ },
1734
+ {
1735
+ "name": "EVE_Hal_rd32",
1736
+ "type": "hal",
1737
+ "level": "low",
1738
+ "weight": 1
1739
+ },
1740
+ {
1741
+ "name": "EVE_Hal_rd8",
1742
+ "type": "hal",
1743
+ "level": "low",
1744
+ "weight": 1
1745
+ },
1746
+ {
1747
+ "name": "EVE_Hal_rdMem",
1748
+ "type": "hal",
1749
+ "level": "low",
1750
+ "weight": 1
1751
+ },
1752
+ {
1753
+ "name": "EVE_Hal_release",
1754
+ "type": "hal",
1755
+ "level": "low",
1756
+ "weight": 1
1757
+ },
1758
+ {
1759
+ "name": "EVE_Hal_wr16",
1760
+ "type": "hal",
1761
+ "level": "low",
1762
+ "weight": 1
1763
+ },
1764
+ {
1765
+ "name": "EVE_Hal_wr32",
1766
+ "type": "hal",
1767
+ "level": "low",
1768
+ "weight": 1
1769
+ },
1770
+ {
1771
+ "name": "EVE_Hal_wr8",
1772
+ "type": "hal",
1773
+ "level": "low",
1774
+ "weight": 1
1775
+ },
1776
+ {
1777
+ "name": "EVE_Hal_wrMem",
1778
+ "type": "hal",
1779
+ "level": "low",
1780
+ "weight": 1
1781
+ },
1782
+ {
1783
+ "name": "EVE_Hal_wrProgMem",
1784
+ "type": "hal",
1785
+ "level": "low",
1786
+ "weight": 1
1787
+ },
1788
+ {
1789
+ "name": "EVE_Hal_wrString",
1790
+ "type": "hal",
1791
+ "level": "low",
1792
+ "weight": 1
1793
+ }
1794
+ ],
1795
+ "samples": [
1796
+ "sampleapp_animation",
1797
+ "sampleapp_bitmap",
1798
+ "sampleapp_flash",
1799
+ "sampleapp_font",
1800
+ "sampleapp_power",
1801
+ "sampleapp_primitives",
1802
+ "sampleapp_sound",
1803
+ "sampleapp_touch",
1804
+ "sampleapp_utility",
1805
+ "sampleapp_video",
1806
+ "sampleapp_widget"
1807
+ ],
1808
+ "keywords": [
1809
+ "general"
1810
+ ],
1811
+ "registers": []
1812
+ },
1813
+ "gpio": {
1814
+ "commands": [],
1815
+ "samples": [
1816
+ "sampleapp_power"
1817
+ ],
1818
+ "keywords": [
1819
+ "gpio"
1820
+ ],
1821
+ "registers": [
1822
+ "REG_GPIO",
1823
+ "REG_GPIO_DIR",
1824
+ "REG_GPIOX",
1825
+ "REG_GPIOX_DIR"
1826
+ ]
1827
+ },
1828
+ "gradient": {
1829
+ "commands": [],
1830
+ "samples": [
1831
+ "sampleapp_primitives"
1832
+ ],
1833
+ "keywords": [
1834
+ "gradient"
1835
+ ],
1836
+ "registers": []
1837
+ },
1838
+ "graphics": {
1839
+ "commands": [
1840
+ {
1841
+ "name": "Display_End",
1842
+ "type": "helper",
1843
+ "level": "high",
1844
+ "weight": 10
1845
+ },
1846
+ {
1847
+ "name": "Display_Start",
1848
+ "type": "helper",
1849
+ "level": "high",
1850
+ "weight": 10
1851
+ },
1852
+ {
1853
+ "name": "Display_StartColor",
1854
+ "type": "helper",
1855
+ "level": "high",
1856
+ "weight": 10
1857
+ },
1858
+ {
1859
+ "name": "EVE_CoCmd_bitmapTransform",
1860
+ "type": "coprocessor",
1861
+ "level": "high",
1862
+ "weight": 8
1863
+ },
1864
+ {
1865
+ "name": "EVE_CoCmd_fontCache",
1866
+ "type": "coprocessor",
1867
+ "level": "high",
1868
+ "weight": 8
1869
+ },
1870
+ {
1871
+ "name": "EVE_CoCmd_fontCacheQuery",
1872
+ "type": "coprocessor",
1873
+ "level": "high",
1874
+ "weight": 8
1875
+ },
1876
+ {
1877
+ "name": "EVE_CoCmd_getImage",
1878
+ "type": "coprocessor",
1879
+ "level": "high",
1880
+ "weight": 8
1881
+ },
1882
+ {
1883
+ "name": "EVE_CoCmd_getProps",
1884
+ "type": "coprocessor",
1885
+ "level": "high",
1886
+ "weight": 8
1887
+ },
1888
+ {
1889
+ "name": "EVE_CoCmd_gradColor",
1890
+ "type": "coprocessor",
1891
+ "level": "high",
1892
+ "weight": 8
1893
+ },
1894
+ {
1895
+ "name": "EVE_CoCmd_gradient",
1896
+ "type": "coprocessor",
1897
+ "level": "high",
1898
+ "weight": 8
1899
+ },
1900
+ {
1901
+ "name": "EVE_CoCmd_gradientA",
1902
+ "type": "coprocessor",
1903
+ "level": "high",
1904
+ "weight": 8
1905
+ },
1906
+ {
1907
+ "name": "EVE_CoDl_alphaFunc",
1908
+ "type": "display_list",
1909
+ "level": "high",
1910
+ "weight": 8
1911
+ },
1912
+ {
1913
+ "name": "EVE_CoDl_bitmapExtFormat",
1914
+ "type": "display_list",
1915
+ "level": "high",
1916
+ "weight": 8
1917
+ },
1918
+ {
1919
+ "name": "EVE_CoDl_bitmapHandle",
1920
+ "type": "display_list",
1921
+ "level": "high",
1922
+ "weight": 8
1923
+ },
1924
+ {
1925
+ "name": "EVE_CoDl_bitmapLayout",
1926
+ "type": "display_list",
1927
+ "level": "high",
1928
+ "weight": 8
1929
+ },
1930
+ {
1931
+ "name": "EVE_CoDl_bitmapSize",
1932
+ "type": "display_list",
1933
+ "level": "high",
1934
+ "weight": 8
1935
+ },
1936
+ {
1937
+ "name": "EVE_CoDl_bitmapSource",
1938
+ "type": "display_list",
1939
+ "level": "high",
1940
+ "weight": 8
1941
+ },
1942
+ {
1943
+ "name": "EVE_CoDl_bitmapSource_ex",
1944
+ "type": "display_list",
1945
+ "level": "high",
1946
+ "weight": 8
1947
+ },
1948
+ {
1949
+ "name": "EVE_CoDl_bitmapSwizzle",
1950
+ "type": "display_list",
1951
+ "level": "high",
1952
+ "weight": 8
1953
+ },
1954
+ {
1955
+ "name": "EVE_CoDl_bitmapTransform_ex",
1956
+ "type": "display_list",
1957
+ "level": "high",
1958
+ "weight": 8
1959
+ },
1960
+ {
1961
+ "name": "EVE_CoDl_bitmapTransformA",
1962
+ "type": "display_list",
1963
+ "level": "high",
1964
+ "weight": 8
1965
+ },
1966
+ {
1967
+ "name": "EVE_CoDl_bitmapTransformA_ex",
1968
+ "type": "display_list",
1969
+ "level": "high",
1970
+ "weight": 8
1971
+ },
1972
+ {
1973
+ "name": "EVE_CoDl_bitmapTransformB",
1974
+ "type": "display_list",
1975
+ "level": "high",
1976
+ "weight": 8
1977
+ },
1978
+ {
1979
+ "name": "EVE_CoDl_bitmapTransformB_ex",
1980
+ "type": "display_list",
1981
+ "level": "high",
1982
+ "weight": 8
1983
+ },
1984
+ {
1985
+ "name": "EVE_CoDl_bitmapTransformC",
1986
+ "type": "display_list",
1987
+ "level": "high",
1988
+ "weight": 8
1989
+ },
1990
+ {
1991
+ "name": "EVE_CoDl_bitmapTransformD",
1992
+ "type": "display_list",
1993
+ "level": "high",
1994
+ "weight": 8
1995
+ },
1996
+ {
1997
+ "name": "EVE_CoDl_bitmapTransformD_ex",
1998
+ "type": "display_list",
1999
+ "level": "high",
2000
+ "weight": 8
2001
+ },
2002
+ {
2003
+ "name": "EVE_CoDl_bitmapTransformE",
2004
+ "type": "display_list",
2005
+ "level": "high",
2006
+ "weight": 8
2007
+ },
2008
+ {
2009
+ "name": "EVE_CoDl_bitmapTransformE_ex",
2010
+ "type": "display_list",
2011
+ "level": "high",
2012
+ "weight": 8
2013
+ },
2014
+ {
2015
+ "name": "EVE_CoDl_bitmapTransformF",
2016
+ "type": "display_list",
2017
+ "level": "high",
2018
+ "weight": 8
2019
+ },
2020
+ {
2021
+ "name": "EVE_CoDl_cell",
2022
+ "type": "display_list",
2023
+ "level": "high",
2024
+ "weight": 8
2025
+ },
2026
+ {
2027
+ "name": "EVE_CoDl_paletteSource",
2028
+ "type": "display_list",
2029
+ "level": "high",
2030
+ "weight": 8
2031
+ }
2032
+ ],
2033
+ "samples": [
2034
+ "sampleapp_animation",
2035
+ "sampleapp_bitmap",
2036
+ "sampleapp_flash",
2037
+ "sampleapp_font",
2038
+ "sampleapp_power",
2039
+ "sampleapp_primitives",
2040
+ "sampleapp_utility",
2041
+ "sampleapp_video",
2042
+ "sampleapp_widget"
2043
+ ],
2044
+ "keywords": [
2045
+ "drawing",
2046
+ "gpu",
2047
+ "graphics",
2048
+ "rendering"
2049
+ ],
2050
+ "registers": []
2051
+ },
2052
+ "graphics_state": {
2053
+ "commands": [
2054
+ {
2055
+ "name": "EVE_CoCmd_bgColor",
2056
+ "type": "coprocessor",
2057
+ "level": "high",
2058
+ "weight": 8
2059
+ },
2060
+ {
2061
+ "name": "EVE_CoCmd_coldStart",
2062
+ "type": "coprocessor",
2063
+ "level": "high",
2064
+ "weight": 8
2065
+ },
2066
+ {
2067
+ "name": "EVE_CoCmd_fgColor",
2068
+ "type": "coprocessor",
2069
+ "level": "high",
2070
+ "weight": 8
2071
+ },
2072
+ {
2073
+ "name": "EVE_CoCmd_fillWidth",
2074
+ "type": "coprocessor",
2075
+ "level": "high",
2076
+ "weight": 8
2077
+ },
2078
+ {
2079
+ "name": "EVE_CoCmd_gradColor",
2080
+ "type": "coprocessor",
2081
+ "level": "high",
2082
+ "weight": 8
2083
+ },
2084
+ {
2085
+ "name": "EVE_CoCmd_mediaFifo",
2086
+ "type": "coprocessor",
2087
+ "level": "high",
2088
+ "weight": 8
2089
+ },
2090
+ {
2091
+ "name": "EVE_CoCmd_setBase",
2092
+ "type": "coprocessor",
2093
+ "level": "high",
2094
+ "weight": 8
2095
+ },
2096
+ {
2097
+ "name": "EVE_CoCmd_setRotate",
2098
+ "type": "coprocessor",
2099
+ "level": "high",
2100
+ "weight": 8
2101
+ },
2102
+ {
2103
+ "name": "EVE_CoDl_alphaFunc",
2104
+ "type": "display_list",
2105
+ "level": "high",
2106
+ "weight": 8
2107
+ },
2108
+ {
2109
+ "name": "EVE_CoDl_blendFunc",
2110
+ "type": "display_list",
2111
+ "level": "high",
2112
+ "weight": 8
2113
+ },
2114
+ {
2115
+ "name": "EVE_CoDl_blendFunc_default",
2116
+ "type": "display_list",
2117
+ "level": "high",
2118
+ "weight": 8
2119
+ },
2120
+ {
2121
+ "name": "EVE_CoDl_colorA",
2122
+ "type": "display_list",
2123
+ "level": "high",
2124
+ "weight": 8
2125
+ },
2126
+ {
2127
+ "name": "EVE_CoDl_colorArgb_ex",
2128
+ "type": "display_list",
2129
+ "level": "high",
2130
+ "weight": 8
2131
+ },
2132
+ {
2133
+ "name": "EVE_CoDl_colorMask",
2134
+ "type": "display_list",
2135
+ "level": "high",
2136
+ "weight": 8
2137
+ },
2138
+ {
2139
+ "name": "EVE_CoDl_colorRgb",
2140
+ "type": "display_list",
2141
+ "level": "high",
2142
+ "weight": 8
2143
+ },
2144
+ {
2145
+ "name": "EVE_CoDl_colorRgb_ex",
2146
+ "type": "display_list",
2147
+ "level": "high",
2148
+ "weight": 8
2149
+ },
2150
+ {
2151
+ "name": "EVE_CoDl_lineWidth",
2152
+ "type": "display_list",
2153
+ "level": "high",
2154
+ "weight": 8
2155
+ },
2156
+ {
2157
+ "name": "EVE_CoDl_pointSize",
2158
+ "type": "display_list",
2159
+ "level": "high",
2160
+ "weight": 8
2161
+ },
2162
+ {
2163
+ "name": "EVE_CoDl_restoreContext",
2164
+ "type": "display_list",
2165
+ "level": "high",
2166
+ "weight": 8
2167
+ },
2168
+ {
2169
+ "name": "EVE_CoDl_saveContext",
2170
+ "type": "display_list",
2171
+ "level": "high",
2172
+ "weight": 8
2173
+ },
2174
+ {
2175
+ "name": "EVE_CoDl_scissorSize",
2176
+ "type": "display_list",
2177
+ "level": "high",
2178
+ "weight": 8
2179
+ },
2180
+ {
2181
+ "name": "EVE_CoDl_scissorXY",
2182
+ "type": "display_list",
2183
+ "level": "high",
2184
+ "weight": 8
2185
+ },
2186
+ {
2187
+ "name": "EVE_CoDl_stencilFunc",
2188
+ "type": "display_list",
2189
+ "level": "high",
2190
+ "weight": 8
2191
+ },
2192
+ {
2193
+ "name": "EVE_CoDl_stencilMask",
2194
+ "type": "display_list",
2195
+ "level": "high",
2196
+ "weight": 8
2197
+ },
2198
+ {
2199
+ "name": "EVE_CoDl_stencilOp",
2200
+ "type": "display_list",
2201
+ "level": "high",
2202
+ "weight": 8
2203
+ },
2204
+ {
2205
+ "name": "EVE_CoDl_tag",
2206
+ "type": "display_list",
2207
+ "level": "high",
2208
+ "weight": 8
2209
+ },
2210
+ {
2211
+ "name": "EVE_CoDl_tagMask",
2212
+ "type": "display_list",
2213
+ "level": "high",
2214
+ "weight": 8
2215
+ },
2216
+ {
2217
+ "name": "EVE_CoDl_vertexFormat",
2218
+ "type": "display_list",
2219
+ "level": "high",
2220
+ "weight": 8
2221
+ },
2222
+ {
2223
+ "name": "EVE_CoDl_vertexTranslateX",
2224
+ "type": "display_list",
2225
+ "level": "high",
2226
+ "weight": 8
2227
+ },
2228
+ {
2229
+ "name": "EVE_CoDl_vertexTranslateY",
2230
+ "type": "display_list",
2231
+ "level": "high",
2232
+ "weight": 8
2233
+ }
2234
+ ],
2235
+ "samples": [
2236
+ "sampleapp_bitmap",
2237
+ "sampleapp_primitives",
2238
+ "sampleapp_touch",
2239
+ "sampleapp_utility",
2240
+ "sampleapp_video",
2241
+ "sampleapp_widget"
2242
+ ],
2243
+ "keywords": [
2244
+ "graphics state",
2245
+ "graphics_state",
2246
+ "graphics-state",
2247
+ "graphicsstate"
2248
+ ],
2249
+ "registers": []
2250
+ },
2251
+ "hardware": {
2252
+ "commands": [],
2253
+ "samples": [
2254
+ "sampleapp_power"
2255
+ ],
2256
+ "keywords": [
2257
+ "hardware"
2258
+ ],
2259
+ "registers": []
2260
+ },
2261
+ "image": {
2262
+ "commands": [
2263
+ {
2264
+ "name": "EVE_CoCmd_bitmapTransform",
2265
+ "type": "coprocessor",
2266
+ "level": "high",
2267
+ "weight": 8
2268
+ },
2269
+ {
2270
+ "name": "EVE_CoCmd_getImage",
2271
+ "type": "coprocessor",
2272
+ "level": "high",
2273
+ "weight": 8
2274
+ },
2275
+ {
2276
+ "name": "EVE_CoCmd_loadImage",
2277
+ "type": "coprocessor",
2278
+ "level": "high",
2279
+ "weight": 8
2280
+ },
2281
+ {
2282
+ "name": "EVE_CoCmd_mediaFifo",
2283
+ "type": "coprocessor",
2284
+ "level": "high",
2285
+ "weight": 8
2286
+ },
2287
+ {
2288
+ "name": "EVE_CoDl_alphaFunc",
2289
+ "type": "display_list",
2290
+ "level": "high",
2291
+ "weight": 8
2292
+ },
2293
+ {
2294
+ "name": "EVE_CoDl_begin",
2295
+ "type": "display_list",
2296
+ "level": "high",
2297
+ "weight": 8
2298
+ },
2299
+ {
2300
+ "name": "EVE_CoDl_bitmapExtFormat",
2301
+ "type": "display_list",
2302
+ "level": "high",
2303
+ "weight": 8
2304
+ },
2305
+ {
2306
+ "name": "EVE_CoDl_bitmapHandle",
2307
+ "type": "display_list",
2308
+ "level": "high",
2309
+ "weight": 8
2310
+ },
2311
+ {
2312
+ "name": "EVE_CoDl_bitmapLayout",
2313
+ "type": "display_list",
2314
+ "level": "high",
2315
+ "weight": 8
2316
+ },
2317
+ {
2318
+ "name": "EVE_CoDl_bitmapSize",
2319
+ "type": "display_list",
2320
+ "level": "high",
2321
+ "weight": 8
2322
+ },
2323
+ {
2324
+ "name": "EVE_CoDl_bitmapSource",
2325
+ "type": "display_list",
2326
+ "level": "high",
2327
+ "weight": 8
2328
+ },
2329
+ {
2330
+ "name": "EVE_CoDl_bitmapSource_ex",
2331
+ "type": "display_list",
2332
+ "level": "high",
2333
+ "weight": 8
2334
+ },
2335
+ {
2336
+ "name": "EVE_CoDl_bitmapSwizzle",
2337
+ "type": "display_list",
2338
+ "level": "high",
2339
+ "weight": 8
2340
+ },
2341
+ {
2342
+ "name": "EVE_CoDl_bitmapTransform_ex",
2343
+ "type": "display_list",
2344
+ "level": "high",
2345
+ "weight": 8
2346
+ },
2347
+ {
2348
+ "name": "EVE_CoDl_bitmapTransformA",
2349
+ "type": "display_list",
2350
+ "level": "high",
2351
+ "weight": 8
2352
+ },
2353
+ {
2354
+ "name": "EVE_CoDl_bitmapTransformA_ex",
2355
+ "type": "display_list",
2356
+ "level": "high",
2357
+ "weight": 8
2358
+ },
2359
+ {
2360
+ "name": "EVE_CoDl_bitmapTransformB",
2361
+ "type": "display_list",
2362
+ "level": "high",
2363
+ "weight": 8
2364
+ },
2365
+ {
2366
+ "name": "EVE_CoDl_bitmapTransformB_ex",
2367
+ "type": "display_list",
2368
+ "level": "high",
2369
+ "weight": 8
2370
+ },
2371
+ {
2372
+ "name": "EVE_CoDl_bitmapTransformC",
2373
+ "type": "display_list",
2374
+ "level": "high",
2375
+ "weight": 8
2376
+ },
2377
+ {
2378
+ "name": "EVE_CoDl_bitmapTransformD",
2379
+ "type": "display_list",
2380
+ "level": "high",
2381
+ "weight": 8
2382
+ },
2383
+ {
2384
+ "name": "EVE_CoDl_bitmapTransformD_ex",
2385
+ "type": "display_list",
2386
+ "level": "high",
2387
+ "weight": 8
2388
+ },
2389
+ {
2390
+ "name": "EVE_CoDl_bitmapTransformE",
2391
+ "type": "display_list",
2392
+ "level": "high",
2393
+ "weight": 8
2394
+ },
2395
+ {
2396
+ "name": "EVE_CoDl_bitmapTransformE_ex",
2397
+ "type": "display_list",
2398
+ "level": "high",
2399
+ "weight": 8
2400
+ },
2401
+ {
2402
+ "name": "EVE_CoDl_bitmapTransformF",
2403
+ "type": "display_list",
2404
+ "level": "high",
2405
+ "weight": 8
2406
+ },
2407
+ {
2408
+ "name": "EVE_CoDl_cell",
2409
+ "type": "display_list",
2410
+ "level": "high",
2411
+ "weight": 8
2412
+ },
2413
+ {
2414
+ "name": "EVE_CoDl_end",
2415
+ "type": "display_list",
2416
+ "level": "high",
2417
+ "weight": 8
2418
+ },
2419
+ {
2420
+ "name": "EVE_CoDl_paletteSource",
2421
+ "type": "display_list",
2422
+ "level": "high",
2423
+ "weight": 8
2424
+ }
2425
+ ],
2426
+ "samples": [
2427
+ "sampleapp_bitmap",
2428
+ "sampleapp_font",
2429
+ "sampleapp_utility",
2430
+ "sampleapp_video"
2431
+ ],
2432
+ "keywords": [
2433
+ "image",
2434
+ "images",
2435
+ "jpeg",
2436
+ "png"
2437
+ ],
2438
+ "registers": [
2439
+ "CMD_BITMAP_TRANSFORM",
2440
+ "CMD_GETIMAGE",
2441
+ "CMD_LOADIMAGE",
2442
+ "CMD_SETBITMAP"
2443
+ ]
2444
+ },
2445
+ "interface": {
2446
+ "commands": [],
2447
+ "samples": [],
2448
+ "keywords": [
2449
+ "bus interface",
2450
+ "hardware interface",
2451
+ "interface"
2452
+ ],
2453
+ "registers": [
2454
+ "CMD_APPENDF",
2455
+ "CMD_FLASHATTACH",
2456
+ "CMD_FLASHDETACH",
2457
+ "CMD_FLASHERASE",
2458
+ "CMD_FLASHFAST",
2459
+ "CMD_FLASHPROGRAM",
2460
+ "CMD_FLASHREAD",
2461
+ "CMD_FLASHSOURCE",
2462
+ "CMD_FLASHSPIDESEL",
2463
+ "CMD_FLASHSPIRX",
2464
+ "CMD_FLASHSPITX",
2465
+ "CMD_FLASHUPDATE",
2466
+ "CMD_FLASHWRITE",
2467
+ "CMD_VIDEOSTARTF",
2468
+ "OPT_FLASH"
2469
+ ]
2470
+ },
2471
+ "interrupts": {
2472
+ "commands": [],
2473
+ "samples": [],
2474
+ "keywords": [
2475
+ "interrupt",
2476
+ "interrupts",
2477
+ "irq"
2478
+ ],
2479
+ "registers": [
2480
+ "REG_INT_EN",
2481
+ "REG_INT_FLAGS",
2482
+ "REG_INT_MASK",
2483
+ "REG_J1_INT"
2484
+ ]
2485
+ },
2486
+ "jpeg": {
2487
+ "commands": [],
2488
+ "samples": [
2489
+ "sampleapp_bitmap"
2490
+ ],
2491
+ "keywords": [
2492
+ "jpeg"
2493
+ ],
2494
+ "registers": []
2495
+ },
2496
+ "keys": {
2497
+ "commands": [
2498
+ {
2499
+ "name": "EVE_CoCmd_gradColor",
2500
+ "type": "coprocessor",
2501
+ "level": "high",
2502
+ "weight": 8
2503
+ },
2504
+ {
2505
+ "name": "EVE_CoCmd_keys",
2506
+ "type": "coprocessor",
2507
+ "level": "high",
2508
+ "weight": 8
2509
+ }
2510
+ ],
2511
+ "samples": [
2512
+ "sampleapp_widget"
2513
+ ],
2514
+ "keywords": [
2515
+ "keys"
2516
+ ],
2517
+ "registers": []
2518
+ },
2519
+ "label": {
2520
+ "commands": [
2521
+ {
2522
+ "name": "Draw_Text",
2523
+ "type": "helper",
2524
+ "level": "high",
2525
+ "weight": 10
2526
+ },
2527
+ {
2528
+ "name": "Draw_Text2",
2529
+ "type": "helper",
2530
+ "level": "high",
2531
+ "weight": 10
2532
+ },
2533
+ {
2534
+ "name": "Draw_TextColor",
2535
+ "type": "helper",
2536
+ "level": "high",
2537
+ "weight": 10
2538
+ },
2539
+ {
2540
+ "name": "EVE_CoCmd_button",
2541
+ "type": "coprocessor",
2542
+ "level": "high",
2543
+ "weight": 8
2544
+ },
2545
+ {
2546
+ "name": "EVE_CoCmd_resetFonts",
2547
+ "type": "coprocessor",
2548
+ "level": "high",
2549
+ "weight": 8
2550
+ },
2551
+ {
2552
+ "name": "EVE_CoCmd_text",
2553
+ "type": "coprocessor",
2554
+ "level": "high",
2555
+ "weight": 8
2556
+ },
2557
+ {
2558
+ "name": "EVE_CoCmd_text_ex",
2559
+ "type": "coprocessor",
2560
+ "level": "high",
2561
+ "weight": 8
2562
+ },
2563
+ {
2564
+ "name": "EVE_CoCmd_text_s",
2565
+ "type": "coprocessor",
2566
+ "level": "high",
2567
+ "weight": 8
2568
+ },
2569
+ {
2570
+ "name": "EVE_Hal_close",
2571
+ "type": "hal",
2572
+ "level": "low",
2573
+ "weight": 1
2574
+ },
2575
+ {
2576
+ "name": "EVE_Hal_idle",
2577
+ "type": "hal",
2578
+ "level": "low",
2579
+ "weight": 1
2580
+ }
2581
+ ],
2582
+ "samples": [
2583
+ "sampleapp_animation",
2584
+ "sampleapp_bitmap",
2585
+ "sampleapp_flash",
2586
+ "sampleapp_font",
2587
+ "sampleapp_power",
2588
+ "sampleapp_primitives",
2589
+ "sampleapp_sound",
2590
+ "sampleapp_touch",
2591
+ "sampleapp_utility",
2592
+ "sampleapp_video",
2593
+ "sampleapp_widget"
2594
+ ],
2595
+ "keywords": [
2596
+ "label"
2597
+ ],
2598
+ "registers": []
2599
+ },
2600
+ "line": {
2601
+ "commands": [
2602
+ {
2603
+ "name": "EVE_CoDl_begin",
2604
+ "type": "display_list",
2605
+ "level": "high",
2606
+ "weight": 8
2607
+ },
2608
+ {
2609
+ "name": "EVE_CoDl_end",
2610
+ "type": "display_list",
2611
+ "level": "high",
2612
+ "weight": 8
2613
+ }
2614
+ ],
2615
+ "samples": [],
2616
+ "keywords": [
2617
+ "line"
2618
+ ],
2619
+ "registers": []
2620
+ },
2621
+ "line_strip": {
2622
+ "commands": [
2623
+ {
2624
+ "name": "EVE_CoDl_begin",
2625
+ "type": "display_list",
2626
+ "level": "high",
2627
+ "weight": 8
2628
+ },
2629
+ {
2630
+ "name": "EVE_CoDl_end",
2631
+ "type": "display_list",
2632
+ "level": "high",
2633
+ "weight": 8
2634
+ }
2635
+ ],
2636
+ "samples": [],
2637
+ "keywords": [
2638
+ "line strip",
2639
+ "line_strip",
2640
+ "line-strip",
2641
+ "linestrip"
2642
+ ],
2643
+ "registers": []
2644
+ },
2645
+ "list": {
2646
+ "commands": [
2647
+ {
2648
+ "name": "EVE_CoCmd_callList",
2649
+ "type": "coprocessor",
2650
+ "level": "high",
2651
+ "weight": 8
2652
+ },
2653
+ {
2654
+ "name": "EVE_CoCmd_newList",
2655
+ "type": "coprocessor",
2656
+ "level": "high",
2657
+ "weight": 8
2658
+ },
2659
+ {
2660
+ "name": "EVE_CoCmd_return",
2661
+ "type": "coprocessor",
2662
+ "level": "high",
2663
+ "weight": 8
2664
+ }
2665
+ ],
2666
+ "samples": [
2667
+ "sampleapp_utility"
2668
+ ],
2669
+ "keywords": [
2670
+ "list"
2671
+ ],
2672
+ "registers": []
2673
+ },
2674
+ "media": {
2675
+ "commands": [
2676
+ {
2677
+ "name": "EVE_CoCmd_playVideo",
2678
+ "type": "coprocessor",
2679
+ "level": "high",
2680
+ "weight": 8
2681
+ },
2682
+ {
2683
+ "name": "EVE_CoCmd_videoFrame",
2684
+ "type": "coprocessor",
2685
+ "level": "high",
2686
+ "weight": 8
2687
+ },
2688
+ {
2689
+ "name": "EVE_CoCmd_videoStart",
2690
+ "type": "coprocessor",
2691
+ "level": "high",
2692
+ "weight": 8
2693
+ },
2694
+ {
2695
+ "name": "EVE_CoCmd_videoStartF",
2696
+ "type": "coprocessor",
2697
+ "level": "high",
2698
+ "weight": 8
2699
+ }
2700
+ ],
2701
+ "samples": [
2702
+ "sampleapp_animation",
2703
+ "sampleapp_sound",
2704
+ "sampleapp_utility",
2705
+ "sampleapp_video"
2706
+ ],
2707
+ "keywords": [
2708
+ "media"
2709
+ ],
2710
+ "registers": [
2711
+ "REG_EJPG_ACC",
2712
+ "REG_EJPG_BUSY",
2713
+ "REG_EJPG_DAT",
2714
+ "REG_EJPG_DCC",
2715
+ "REG_EJPG_DEBUG",
2716
+ "REG_EJPG_DST",
2717
+ "REG_EJPG_FORMAT",
2718
+ "REG_EJPG_H",
2719
+ "REG_EJPG_HT",
2720
+ "REG_EJPG_OPTIONS",
2721
+ "REG_EJPG_Q",
2722
+ "REG_EJPG_READY",
2723
+ "REG_EJPG_RI",
2724
+ "REG_EJPG_SCALE",
2725
+ "REG_EJPG_TDA",
2726
+ "REG_EJPG_TQ",
2727
+ "REG_EJPG_W",
2728
+ "REG_MEDIAFIFO_BASE",
2729
+ "REG_MEDIAFIFO_READ",
2730
+ "REG_MEDIAFIFO_SIZE",
2731
+ "REG_MEDIAFIFO_WRITE"
2732
+ ]
2733
+ },
2734
+ "media_fifo": {
2735
+ "commands": [
2736
+ {
2737
+ "name": "EVE_CoCmd_inflate",
2738
+ "type": "coprocessor",
2739
+ "level": "high",
2740
+ "weight": 8
2741
+ },
2742
+ {
2743
+ "name": "EVE_CoCmd_inflate2",
2744
+ "type": "coprocessor",
2745
+ "level": "high",
2746
+ "weight": 8
2747
+ },
2748
+ {
2749
+ "name": "EVE_CoCmd_loadImage",
2750
+ "type": "coprocessor",
2751
+ "level": "high",
2752
+ "weight": 8
2753
+ },
2754
+ {
2755
+ "name": "EVE_CoCmd_mediaFifo",
2756
+ "type": "coprocessor",
2757
+ "level": "high",
2758
+ "weight": 8
2759
+ },
2760
+ {
2761
+ "name": "EVE_CoCmd_playVideo",
2762
+ "type": "coprocessor",
2763
+ "level": "high",
2764
+ "weight": 8
2765
+ },
2766
+ {
2767
+ "name": "EVE_CoCmd_videoFrame",
2768
+ "type": "coprocessor",
2769
+ "level": "high",
2770
+ "weight": 8
2771
+ },
2772
+ {
2773
+ "name": "EVE_CoCmd_videoStart",
2774
+ "type": "coprocessor",
2775
+ "level": "high",
2776
+ "weight": 8
2777
+ }
2778
+ ],
2779
+ "samples": [
2780
+ "sampleapp_bitmap",
2781
+ "sampleapp_font",
2782
+ "sampleapp_utility",
2783
+ "sampleapp_video"
2784
+ ],
2785
+ "keywords": [
2786
+ "media fifo",
2787
+ "media_fifo",
2788
+ "media-fifo",
2789
+ "mediafifo"
2790
+ ],
2791
+ "registers": []
2792
+ },
2793
+ "memory": {
2794
+ "commands": [
2795
+ {
2796
+ "name": "EVE_Cmd_restore",
2797
+ "type": "coprocessor",
2798
+ "level": "high",
2799
+ "weight": 8
2800
+ },
2801
+ {
2802
+ "name": "EVE_Cmd_waitFlush",
2803
+ "type": "coprocessor",
2804
+ "level": "high",
2805
+ "weight": 8
2806
+ },
2807
+ {
2808
+ "name": "EVE_Cmd_wr32",
2809
+ "type": "coprocessor",
2810
+ "level": "high",
2811
+ "weight": 8
2812
+ },
2813
+ {
2814
+ "name": "EVE_Cmd_wrMem",
2815
+ "type": "coprocessor",
2816
+ "level": "high",
2817
+ "weight": 8
2818
+ },
2819
+ {
2820
+ "name": "EVE_CoCmd_memCpy",
2821
+ "type": "coprocessor",
2822
+ "level": "high",
2823
+ "weight": 8
2824
+ },
2825
+ {
2826
+ "name": "EVE_CoCmd_memCrc",
2827
+ "type": "coprocessor",
2828
+ "level": "high",
2829
+ "weight": 8
2830
+ },
2831
+ {
2832
+ "name": "EVE_CoCmd_memSet",
2833
+ "type": "coprocessor",
2834
+ "level": "high",
2835
+ "weight": 8
2836
+ },
2837
+ {
2838
+ "name": "EVE_CoCmd_memWrite",
2839
+ "type": "coprocessor",
2840
+ "level": "high",
2841
+ "weight": 8
2842
+ },
2843
+ {
2844
+ "name": "EVE_CoCmd_memWrite32",
2845
+ "type": "coprocessor",
2846
+ "level": "high",
2847
+ "weight": 8
2848
+ },
2849
+ {
2850
+ "name": "EVE_CoCmd_memZero",
2851
+ "type": "coprocessor",
2852
+ "level": "high",
2853
+ "weight": 8
2854
+ },
2855
+ {
2856
+ "name": "EVE_CoDl_jump",
2857
+ "type": "display_list",
2858
+ "level": "high",
2859
+ "weight": 8
2860
+ }
2861
+ ],
2862
+ "samples": [
2863
+ "sampleapp_animation",
2864
+ "sampleapp_flash",
2865
+ "sampleapp_sound",
2866
+ "sampleapp_utility",
2867
+ "sampleapp_widget"
2868
+ ],
2869
+ "keywords": [
2870
+ "memory",
2871
+ "memory operations",
2872
+ "ram"
2873
+ ],
2874
+ "registers": []
2875
+ },
2876
+ "multitouch": {
2877
+ "commands": [],
2878
+ "samples": [
2879
+ "sampleapp_touch"
2880
+ ],
2881
+ "keywords": [
2882
+ "multitouch"
2883
+ ],
2884
+ "registers": []
2885
+ },
2886
+ "number": {
2887
+ "commands": [
2888
+ {
2889
+ "name": "EVE_CoCmd_number",
2890
+ "type": "coprocessor",
2891
+ "level": "high",
2892
+ "weight": 8
2893
+ },
2894
+ {
2895
+ "name": "EVE_CoCmd_setBase",
2896
+ "type": "coprocessor",
2897
+ "level": "high",
2898
+ "weight": 8
2899
+ }
2900
+ ],
2901
+ "samples": [
2902
+ "sampleapp_touch",
2903
+ "sampleapp_utility",
2904
+ "sampleapp_widget"
2905
+ ],
2906
+ "keywords": [
2907
+ "number"
2908
+ ],
2909
+ "registers": []
2910
+ },
2911
+ "playback": {
2912
+ "commands": [],
2913
+ "samples": [
2914
+ "sampleapp_sound"
2915
+ ],
2916
+ "keywords": [
2917
+ "playback"
2918
+ ],
2919
+ "registers": []
2920
+ },
2921
+ "png": {
2922
+ "commands": [],
2923
+ "samples": [
2924
+ "sampleapp_bitmap"
2925
+ ],
2926
+ "keywords": [
2927
+ "png"
2928
+ ],
2929
+ "registers": []
2930
+ },
2931
+ "point": {
2932
+ "commands": [
2933
+ {
2934
+ "name": "EVE_CoDl_begin",
2935
+ "type": "display_list",
2936
+ "level": "high",
2937
+ "weight": 8
2938
+ },
2939
+ {
2940
+ "name": "EVE_CoDl_end",
2941
+ "type": "display_list",
2942
+ "level": "high",
2943
+ "weight": 8
2944
+ }
2945
+ ],
2946
+ "samples": [],
2947
+ "keywords": [
2948
+ "point"
2949
+ ],
2950
+ "registers": []
2951
+ },
2952
+ "power": {
2953
+ "commands": [],
2954
+ "samples": [
2955
+ "sampleapp_power"
2956
+ ],
2957
+ "keywords": [
2958
+ "power"
2959
+ ],
2960
+ "registers": []
2961
+ },
2962
+ "primitives": {
2963
+ "commands": [
2964
+ {
2965
+ "name": "EVE_CoDl_begin",
2966
+ "type": "display_list",
2967
+ "level": "high",
2968
+ "weight": 8
2969
+ },
2970
+ {
2971
+ "name": "EVE_CoDl_end",
2972
+ "type": "display_list",
2973
+ "level": "high",
2974
+ "weight": 8
2975
+ }
2976
+ ],
2977
+ "samples": [
2978
+ "sampleapp_primitives"
2979
+ ],
2980
+ "keywords": [
2981
+ "lines",
2982
+ "points",
2983
+ "primitive",
2984
+ "primitives",
2985
+ "rectangles"
2986
+ ],
2987
+ "registers": []
2988
+ },
2989
+ "progress": {
2990
+ "commands": [
2991
+ {
2992
+ "name": "EVE_CoCmd_bgColor",
2993
+ "type": "coprocessor",
2994
+ "level": "high",
2995
+ "weight": 8
2996
+ },
2997
+ {
2998
+ "name": "EVE_CoCmd_progress",
2999
+ "type": "coprocessor",
3000
+ "level": "high",
3001
+ "weight": 8
3002
+ }
3003
+ ],
3004
+ "samples": [
3005
+ "sampleapp_touch",
3006
+ "sampleapp_widget"
3007
+ ],
3008
+ "keywords": [
3009
+ "progress"
3010
+ ],
3011
+ "registers": []
3012
+ },
3013
+ "rectangle": {
3014
+ "commands": [
3015
+ {
3016
+ "name": "EVE_CoDl_begin",
3017
+ "type": "display_list",
3018
+ "level": "high",
3019
+ "weight": 8
3020
+ },
3021
+ {
3022
+ "name": "EVE_CoDl_end",
3023
+ "type": "display_list",
3024
+ "level": "high",
3025
+ "weight": 8
3026
+ }
3027
+ ],
3028
+ "samples": [],
3029
+ "keywords": [
3030
+ "rectangle"
3031
+ ],
3032
+ "registers": []
3033
+ },
3034
+ "register": {
3035
+ "commands": [
3036
+ {
3037
+ "name": "EVE_CoCmd_regRead",
3038
+ "type": "coprocessor",
3039
+ "level": "high",
3040
+ "weight": 8
3041
+ }
3042
+ ],
3043
+ "samples": [
3044
+ "sampleapp_animation"
3045
+ ],
3046
+ "keywords": [
3047
+ "register"
3048
+ ],
3049
+ "registers": []
3050
+ },
3051
+ "screen_saver": {
3052
+ "commands": [
3053
+ {
3054
+ "name": "EVE_CoCmd_stop",
3055
+ "type": "coprocessor",
3056
+ "level": "high",
3057
+ "weight": 8
3058
+ }
3059
+ ],
3060
+ "samples": [],
3061
+ "keywords": [
3062
+ "screen saver",
3063
+ "screen_saver",
3064
+ "screen-saver",
3065
+ "screensaver"
3066
+ ],
3067
+ "registers": []
3068
+ },
3069
+ "scrollbar": {
3070
+ "commands": [
3071
+ {
3072
+ "name": "EVE_CoCmd_bgColor",
3073
+ "type": "coprocessor",
3074
+ "level": "high",
3075
+ "weight": 8
3076
+ },
3077
+ {
3078
+ "name": "EVE_CoCmd_scrollbar",
3079
+ "type": "coprocessor",
3080
+ "level": "high",
3081
+ "weight": 8
3082
+ }
3083
+ ],
3084
+ "samples": [
3085
+ "sampleapp_touch",
3086
+ "sampleapp_widget"
3087
+ ],
3088
+ "keywords": [
3089
+ "scrollbar"
3090
+ ],
3091
+ "registers": []
3092
+ },
3093
+ "sd_card": {
3094
+ "commands": [],
3095
+ "samples": [
3096
+ "sampleapp_animation"
3097
+ ],
3098
+ "keywords": [
3099
+ "filesystem",
3100
+ "sd card",
3101
+ "sd_card",
3102
+ "sd-card",
3103
+ "sdcard"
3104
+ ],
3105
+ "registers": []
3106
+ },
3107
+ "sketch": {
3108
+ "commands": [
3109
+ {
3110
+ "name": "EVE_CoCmd_stop",
3111
+ "type": "coprocessor",
3112
+ "level": "high",
3113
+ "weight": 8
3114
+ }
3115
+ ],
3116
+ "samples": [],
3117
+ "keywords": [
3118
+ "sketch"
3119
+ ],
3120
+ "registers": []
3121
+ },
3122
+ "slider": {
3123
+ "commands": [
3124
+ {
3125
+ "name": "EVE_CoCmd_bgColor",
3126
+ "type": "coprocessor",
3127
+ "level": "high",
3128
+ "weight": 8
3129
+ },
3130
+ {
3131
+ "name": "EVE_CoCmd_slider",
3132
+ "type": "coprocessor",
3133
+ "level": "high",
3134
+ "weight": 8
3135
+ }
3136
+ ],
3137
+ "samples": [
3138
+ "sampleapp_sound",
3139
+ "sampleapp_touch",
3140
+ "sampleapp_widget"
3141
+ ],
3142
+ "keywords": [
3143
+ "slider"
3144
+ ],
3145
+ "registers": []
3146
+ },
3147
+ "snapshot": {
3148
+ "commands": [
3149
+ {
3150
+ "name": "EVE_CoCmd_snapshot",
3151
+ "type": "coprocessor",
3152
+ "level": "high",
3153
+ "weight": 8
3154
+ },
3155
+ {
3156
+ "name": "EVE_CoCmd_snapshot2",
3157
+ "type": "coprocessor",
3158
+ "level": "high",
3159
+ "weight": 8
3160
+ }
3161
+ ],
3162
+ "samples": [
3163
+ "sampleapp_utility"
3164
+ ],
3165
+ "keywords": [
3166
+ "snapshot"
3167
+ ],
3168
+ "registers": []
3169
+ },
3170
+ "spi": {
3171
+ "commands": [],
3172
+ "samples": [
3173
+ "sampleapp_power"
3174
+ ],
3175
+ "keywords": [
3176
+ "spi"
3177
+ ],
3178
+ "registers": [
3179
+ "REG_ESPIM_ADD",
3180
+ "REG_ESPIM_COUNT",
3181
+ "REG_ESPIM_DTR",
3182
+ "REG_ESPIM_DUMMY",
3183
+ "REG_ESPIM_READSTART",
3184
+ "REG_ESPIM_SEQ",
3185
+ "REG_ESPIM_TRIG",
3186
+ "REG_ESPIM_WINDOW",
3187
+ "REG_SPI_EARLY_TX",
3188
+ "REG_SPI_WIDTH",
3189
+ "REG_SPIM",
3190
+ "REG_SPIM_DIR"
3191
+ ]
3192
+ },
3193
+ "spinner": {
3194
+ "commands": [
3195
+ {
3196
+ "name": "EVE_CoCmd_spinner",
3197
+ "type": "coprocessor",
3198
+ "level": "high",
3199
+ "weight": 8
3200
+ },
3201
+ {
3202
+ "name": "EVE_CoCmd_stop",
3203
+ "type": "coprocessor",
3204
+ "level": "high",
3205
+ "weight": 8
3206
+ }
3207
+ ],
3208
+ "samples": [
3209
+ "sampleapp_video",
3210
+ "sampleapp_widget"
3211
+ ],
3212
+ "keywords": [
3213
+ "spinner"
3214
+ ],
3215
+ "registers": []
3216
+ },
3217
+ "storage": {
3218
+ "commands": [
3219
+ {
3220
+ "name": "Flash_Init",
3221
+ "type": "helper",
3222
+ "level": "high",
3223
+ "weight": 10
3224
+ },
3225
+ {
3226
+ "name": "FlashHelper_ClearCache",
3227
+ "type": "helper",
3228
+ "level": "high",
3229
+ "weight": 10
3230
+ },
3231
+ {
3232
+ "name": "FlashHelper_Erase",
3233
+ "type": "helper",
3234
+ "level": "high",
3235
+ "weight": 10
3236
+ },
3237
+ {
3238
+ "name": "FlashHelper_flashWriteExt",
3239
+ "type": "helper",
3240
+ "level": "high",
3241
+ "weight": 10
3242
+ },
3243
+ {
3244
+ "name": "FlashHelper_GetState",
3245
+ "type": "helper",
3246
+ "level": "high",
3247
+ "weight": 10
3248
+ },
3249
+ {
3250
+ "name": "FlashHelper_Read",
3251
+ "type": "helper",
3252
+ "level": "high",
3253
+ "weight": 10
3254
+ },
3255
+ {
3256
+ "name": "FlashHelper_SwitchFullMode",
3257
+ "type": "helper",
3258
+ "level": "high",
3259
+ "weight": 10
3260
+ },
3261
+ {
3262
+ "name": "FlashHelper_SwitchState",
3263
+ "type": "helper",
3264
+ "level": "high",
3265
+ "weight": 10
3266
+ },
3267
+ {
3268
+ "name": "FlashHelper_Update",
3269
+ "type": "helper",
3270
+ "level": "high",
3271
+ "weight": 10
3272
+ },
3273
+ {
3274
+ "name": "FlashHelper_Write",
3275
+ "type": "helper",
3276
+ "level": "high",
3277
+ "weight": 10
3278
+ },
3279
+ {
3280
+ "name": "EVE_CoCmd_flashAttach",
3281
+ "type": "coprocessor",
3282
+ "level": "high",
3283
+ "weight": 8
3284
+ },
3285
+ {
3286
+ "name": "EVE_CoCmd_flashDetach",
3287
+ "type": "coprocessor",
3288
+ "level": "high",
3289
+ "weight": 8
3290
+ },
3291
+ {
3292
+ "name": "EVE_CoCmd_flashErase",
3293
+ "type": "coprocessor",
3294
+ "level": "high",
3295
+ "weight": 8
3296
+ },
3297
+ {
3298
+ "name": "EVE_CoCmd_flashFast",
3299
+ "type": "coprocessor",
3300
+ "level": "high",
3301
+ "weight": 8
3302
+ },
3303
+ {
3304
+ "name": "EVE_CoCmd_flashProgram",
3305
+ "type": "coprocessor",
3306
+ "level": "high",
3307
+ "weight": 8
3308
+ },
3309
+ {
3310
+ "name": "EVE_CoCmd_flashRead",
3311
+ "type": "coprocessor",
3312
+ "level": "high",
3313
+ "weight": 8
3314
+ },
3315
+ {
3316
+ "name": "EVE_CoCmd_flashRead_flush",
3317
+ "type": "coprocessor",
3318
+ "level": "high",
3319
+ "weight": 8
3320
+ },
3321
+ {
3322
+ "name": "EVE_CoCmd_flashSource",
3323
+ "type": "coprocessor",
3324
+ "level": "high",
3325
+ "weight": 8
3326
+ },
3327
+ {
3328
+ "name": "EVE_CoCmd_flashSpiDesel",
3329
+ "type": "coprocessor",
3330
+ "level": "high",
3331
+ "weight": 8
3332
+ },
3333
+ {
3334
+ "name": "EVE_CoCmd_flashSpiRx",
3335
+ "type": "coprocessor",
3336
+ "level": "high",
3337
+ "weight": 8
3338
+ },
3339
+ {
3340
+ "name": "EVE_CoCmd_flashSpiTx",
3341
+ "type": "coprocessor",
3342
+ "level": "high",
3343
+ "weight": 8
3344
+ },
3345
+ {
3346
+ "name": "EVE_CoCmd_flashUpdate",
3347
+ "type": "coprocessor",
3348
+ "level": "high",
3349
+ "weight": 8
3350
+ },
3351
+ {
3352
+ "name": "EVE_CoCmd_flashWrite",
3353
+ "type": "coprocessor",
3354
+ "level": "high",
3355
+ "weight": 8
3356
+ },
3357
+ {
3358
+ "name": "EVE_CoCmd_loadImage",
3359
+ "type": "coprocessor",
3360
+ "level": "high",
3361
+ "weight": 8
3362
+ },
3363
+ {
3364
+ "name": "EVE_CoCmd_playVideo",
3365
+ "type": "coprocessor",
3366
+ "level": "high",
3367
+ "weight": 8
3368
+ }
3369
+ ],
3370
+ "samples": [
3371
+ "sampleapp_animation",
3372
+ "sampleapp_bitmap",
3373
+ "sampleapp_flash",
3374
+ "sampleapp_font",
3375
+ "sampleapp_utility",
3376
+ "sampleapp_video"
3377
+ ],
3378
+ "keywords": [
3379
+ "file storage",
3380
+ "persistent storage",
3381
+ "storage"
3382
+ ],
3383
+ "registers": []
3384
+ },
3385
+ "style": {
3386
+ "commands": [
3387
+ {
3388
+ "name": "Draw_TextColor",
3389
+ "type": "helper",
3390
+ "level": "high",
3391
+ "weight": 10
3392
+ },
3393
+ {
3394
+ "name": "EVE_CoCmd_bgColor",
3395
+ "type": "coprocessor",
3396
+ "level": "high",
3397
+ "weight": 8
3398
+ },
3399
+ {
3400
+ "name": "EVE_CoCmd_bitmapTransform",
3401
+ "type": "coprocessor",
3402
+ "level": "high",
3403
+ "weight": 8
3404
+ },
3405
+ {
3406
+ "name": "EVE_CoCmd_cgradient",
3407
+ "type": "coprocessor",
3408
+ "level": "high",
3409
+ "weight": 8
3410
+ },
3411
+ {
3412
+ "name": "EVE_CoCmd_fgColor",
3413
+ "type": "coprocessor",
3414
+ "level": "high",
3415
+ "weight": 8
3416
+ },
3417
+ {
3418
+ "name": "EVE_CoCmd_fillWidth",
3419
+ "type": "coprocessor",
3420
+ "level": "high",
3421
+ "weight": 8
3422
+ },
3423
+ {
3424
+ "name": "EVE_CoCmd_getMatrix",
3425
+ "type": "coprocessor",
3426
+ "level": "high",
3427
+ "weight": 8
3428
+ },
3429
+ {
3430
+ "name": "EVE_CoCmd_gradColor",
3431
+ "type": "coprocessor",
3432
+ "level": "high",
3433
+ "weight": 8
3434
+ },
3435
+ {
3436
+ "name": "EVE_CoCmd_gradient",
3437
+ "type": "coprocessor",
3438
+ "level": "high",
3439
+ "weight": 8
3440
+ },
3441
+ {
3442
+ "name": "EVE_CoCmd_gradientA",
3443
+ "type": "coprocessor",
3444
+ "level": "high",
3445
+ "weight": 8
3446
+ },
3447
+ {
3448
+ "name": "EVE_CoCmd_loadIdentity",
3449
+ "type": "coprocessor",
3450
+ "level": "high",
3451
+ "weight": 8
3452
+ },
3453
+ {
3454
+ "name": "EVE_CoCmd_number",
3455
+ "type": "coprocessor",
3456
+ "level": "high",
3457
+ "weight": 8
3458
+ },
3459
+ {
3460
+ "name": "EVE_CoCmd_progress",
3461
+ "type": "coprocessor",
3462
+ "level": "high",
3463
+ "weight": 8
3464
+ },
3465
+ {
3466
+ "name": "EVE_CoCmd_rotate",
3467
+ "type": "coprocessor",
3468
+ "level": "high",
3469
+ "weight": 8
3470
+ },
3471
+ {
3472
+ "name": "EVE_CoCmd_rotateAround",
3473
+ "type": "coprocessor",
3474
+ "level": "high",
3475
+ "weight": 8
3476
+ },
3477
+ {
3478
+ "name": "EVE_CoCmd_scale",
3479
+ "type": "coprocessor",
3480
+ "level": "high",
3481
+ "weight": 8
3482
+ },
3483
+ {
3484
+ "name": "EVE_CoCmd_screenSaver",
3485
+ "type": "coprocessor",
3486
+ "level": "high",
3487
+ "weight": 8
3488
+ },
3489
+ {
3490
+ "name": "EVE_CoCmd_setBase",
3491
+ "type": "coprocessor",
3492
+ "level": "high",
3493
+ "weight": 8
3494
+ },
3495
+ {
3496
+ "name": "EVE_CoCmd_setMatrix",
3497
+ "type": "coprocessor",
3498
+ "level": "high",
3499
+ "weight": 8
3500
+ },
3501
+ {
3502
+ "name": "EVE_CoCmd_setRotate",
3503
+ "type": "coprocessor",
3504
+ "level": "high",
3505
+ "weight": 8
3506
+ },
3507
+ {
3508
+ "name": "EVE_CoCmd_translate",
3509
+ "type": "coprocessor",
3510
+ "level": "high",
3511
+ "weight": 8
3512
+ },
3513
+ {
3514
+ "name": "EVE_CoDl_blendFunc",
3515
+ "type": "display_list",
3516
+ "level": "high",
3517
+ "weight": 8
3518
+ },
3519
+ {
3520
+ "name": "EVE_CoDl_blendFunc_default",
3521
+ "type": "display_list",
3522
+ "level": "high",
3523
+ "weight": 8
3524
+ },
3525
+ {
3526
+ "name": "EVE_CoDl_clearStencil",
3527
+ "type": "display_list",
3528
+ "level": "high",
3529
+ "weight": 8
3530
+ },
3531
+ {
3532
+ "name": "EVE_CoDl_clearTag",
3533
+ "type": "display_list",
3534
+ "level": "high",
3535
+ "weight": 8
3536
+ },
3537
+ {
3538
+ "name": "EVE_CoDl_colorA",
3539
+ "type": "display_list",
3540
+ "level": "high",
3541
+ "weight": 8
3542
+ },
3543
+ {
3544
+ "name": "EVE_CoDl_colorArgb_ex",
3545
+ "type": "display_list",
3546
+ "level": "high",
3547
+ "weight": 8
3548
+ },
3549
+ {
3550
+ "name": "EVE_CoDl_colorMask",
3551
+ "type": "display_list",
3552
+ "level": "high",
3553
+ "weight": 8
3554
+ },
3555
+ {
3556
+ "name": "EVE_CoDl_colorRgb",
3557
+ "type": "display_list",
3558
+ "level": "high",
3559
+ "weight": 8
3560
+ },
3561
+ {
3562
+ "name": "EVE_CoDl_colorRgb_ex",
3563
+ "type": "display_list",
3564
+ "level": "high",
3565
+ "weight": 8
3566
+ },
3567
+ {
3568
+ "name": "EVE_CoDl_lineWidth",
3569
+ "type": "display_list",
3570
+ "level": "high",
3571
+ "weight": 8
3572
+ },
3573
+ {
3574
+ "name": "EVE_CoDl_pointSize",
3575
+ "type": "display_list",
3576
+ "level": "high",
3577
+ "weight": 8
3578
+ },
3579
+ {
3580
+ "name": "EVE_CoDl_scissorSize",
3581
+ "type": "display_list",
3582
+ "level": "high",
3583
+ "weight": 8
3584
+ },
3585
+ {
3586
+ "name": "EVE_CoDl_scissorXY",
3587
+ "type": "display_list",
3588
+ "level": "high",
3589
+ "weight": 8
3590
+ },
3591
+ {
3592
+ "name": "EVE_CoDl_stencilFunc",
3593
+ "type": "display_list",
3594
+ "level": "high",
3595
+ "weight": 8
3596
+ },
3597
+ {
3598
+ "name": "EVE_CoDl_stencilMask",
3599
+ "type": "display_list",
3600
+ "level": "high",
3601
+ "weight": 8
3602
+ },
3603
+ {
3604
+ "name": "EVE_CoDl_stencilOp",
3605
+ "type": "display_list",
3606
+ "level": "high",
3607
+ "weight": 8
3608
+ },
3609
+ {
3610
+ "name": "EVE_CoDl_vertexTranslateX",
3611
+ "type": "display_list",
3612
+ "level": "high",
3613
+ "weight": 8
3614
+ },
3615
+ {
3616
+ "name": "EVE_CoDl_vertexTranslateY",
3617
+ "type": "display_list",
3618
+ "level": "high",
3619
+ "weight": 8
3620
+ }
3621
+ ],
3622
+ "samples": [
3623
+ "sampleapp_bitmap",
3624
+ "sampleapp_font",
3625
+ "sampleapp_power",
3626
+ "sampleapp_primitives",
3627
+ "sampleapp_touch",
3628
+ "sampleapp_utility",
3629
+ "sampleapp_video",
3630
+ "sampleapp_widget"
3631
+ ],
3632
+ "keywords": [
3633
+ "style"
3634
+ ],
3635
+ "registers": []
3636
+ },
3637
+ "system": {
3638
+ "commands": [],
3639
+ "samples": [],
3640
+ "keywords": [
3641
+ "device control",
3642
+ "system",
3643
+ "system control"
3644
+ ],
3645
+ "registers": [
3646
+ "RAM_BIST",
3647
+ "RAM_COMPOSITE",
3648
+ "RAM_ERR_REPORT",
3649
+ "RAM_G",
3650
+ "RAM_J1RAM",
3651
+ "RAM_JTBOOT",
3652
+ "RAM_REG",
3653
+ "RAM_ROMSUB",
3654
+ "RAM_TOP",
3655
+ "REG_ADAPTIVE_FRAMERATE",
3656
+ "REG_ANA_COMP",
3657
+ "REG_ANALOG",
3658
+ "REG_BIST_EN",
3659
+ "REG_CLOCK",
3660
+ "REG_CPURESET",
3661
+ "REG_CRC",
3662
+ "REG_CYA0",
3663
+ "REG_CYA1",
3664
+ "REG_DATESTAMP",
3665
+ "REG_DF_TUNED",
3666
+ "REG_FREQUENCY",
3667
+ "REG_ID",
3668
+ "REG_J1_COLD",
3669
+ "REG_PATCHED_ANALOG",
3670
+ "REG_PLAY",
3671
+ "REG_RAM_FOLD",
3672
+ "REG_ROMSUB_SEL",
3673
+ "REG_SHA1KEY",
3674
+ "REG_TRIM",
3675
+ "ROM_CHIPID"
3676
+ ]
3677
+ },
3678
+ "template": {
3679
+ "commands": [
3680
+ {
3681
+ "name": "EVE_CoCmd_d",
3682
+ "type": "coprocessor",
3683
+ "level": "low",
3684
+ "weight": 1
3685
+ },
3686
+ {
3687
+ "name": "EVE_CoCmd_dd",
3688
+ "type": "coprocessor",
3689
+ "level": "low",
3690
+ "weight": 1
3691
+ },
3692
+ {
3693
+ "name": "EVE_CoCmd_ddd",
3694
+ "type": "coprocessor",
3695
+ "level": "low",
3696
+ "weight": 1
3697
+ },
3698
+ {
3699
+ "name": "EVE_CoCmd_dddd",
3700
+ "type": "coprocessor",
3701
+ "level": "low",
3702
+ "weight": 1
3703
+ },
3704
+ {
3705
+ "name": "EVE_CoCmd_ddwww",
3706
+ "type": "coprocessor",
3707
+ "level": "low",
3708
+ "weight": 1
3709
+ },
3710
+ {
3711
+ "name": "EVE_CoCmd_dl",
3712
+ "type": "coprocessor",
3713
+ "level": "low",
3714
+ "weight": 1
3715
+ },
3716
+ {
3717
+ "name": "EVE_CoCmd_dwwdwwd",
3718
+ "type": "coprocessor",
3719
+ "level": "low",
3720
+ "weight": 1
3721
+ },
3722
+ {
3723
+ "name": "EVE_CoCmd_dwwww",
3724
+ "type": "coprocessor",
3725
+ "level": "low",
3726
+ "weight": 1
3727
+ },
3728
+ {
3729
+ "name": "EVE_CoCmd_dwwwww",
3730
+ "type": "coprocessor",
3731
+ "level": "low",
3732
+ "weight": 1
3733
+ },
3734
+ {
3735
+ "name": "EVE_CoCmd_dwwwwwww",
3736
+ "type": "coprocessor",
3737
+ "level": "low",
3738
+ "weight": 1
3739
+ },
3740
+ {
3741
+ "name": "EVE_CoCmd_dwwwwwwww",
3742
+ "type": "coprocessor",
3743
+ "level": "low",
3744
+ "weight": 1
3745
+ }
3746
+ ],
3747
+ "samples": [],
3748
+ "keywords": [
3749
+ "template"
3750
+ ],
3751
+ "registers": []
3752
+ },
3753
+ "test_card": {
3754
+ "commands": [
3755
+ {
3756
+ "name": "EVE_CoCmd_testCard",
3757
+ "type": "coprocessor",
3758
+ "level": "high",
3759
+ "weight": 8
3760
+ }
3761
+ ],
3762
+ "samples": [
3763
+ "sampleapp_primitives"
3764
+ ],
3765
+ "keywords": [
3766
+ "test card",
3767
+ "test_card",
3768
+ "test-card",
3769
+ "testcard"
3770
+ ],
3771
+ "registers": []
3772
+ },
3773
+ "text": {
3774
+ "commands": [
3775
+ {
3776
+ "name": "Draw_Text",
3777
+ "type": "helper",
3778
+ "level": "high",
3779
+ "weight": 10
3780
+ },
3781
+ {
3782
+ "name": "Draw_Text2",
3783
+ "type": "helper",
3784
+ "level": "high",
3785
+ "weight": 10
3786
+ },
3787
+ {
3788
+ "name": "Draw_TextColor",
3789
+ "type": "helper",
3790
+ "level": "high",
3791
+ "weight": 10
3792
+ },
3793
+ {
3794
+ "name": "EVE_CoCmd_button",
3795
+ "type": "coprocessor",
3796
+ "level": "high",
3797
+ "weight": 8
3798
+ },
3799
+ {
3800
+ "name": "EVE_CoCmd_fontCache",
3801
+ "type": "coprocessor",
3802
+ "level": "high",
3803
+ "weight": 8
3804
+ },
3805
+ {
3806
+ "name": "EVE_CoCmd_fontCacheQuery",
3807
+ "type": "coprocessor",
3808
+ "level": "high",
3809
+ "weight": 8
3810
+ },
3811
+ {
3812
+ "name": "EVE_CoCmd_number",
3813
+ "type": "coprocessor",
3814
+ "level": "high",
3815
+ "weight": 8
3816
+ },
3817
+ {
3818
+ "name": "EVE_CoCmd_resetFonts",
3819
+ "type": "coprocessor",
3820
+ "level": "high",
3821
+ "weight": 8
3822
+ },
3823
+ {
3824
+ "name": "EVE_CoCmd_text",
3825
+ "type": "coprocessor",
3826
+ "level": "high",
3827
+ "weight": 8
3828
+ },
3829
+ {
3830
+ "name": "EVE_CoCmd_text_ex",
3831
+ "type": "coprocessor",
3832
+ "level": "high",
3833
+ "weight": 8
3834
+ },
3835
+ {
3836
+ "name": "EVE_CoCmd_text_s",
3837
+ "type": "coprocessor",
3838
+ "level": "high",
3839
+ "weight": 8
3840
+ },
3841
+ {
3842
+ "name": "EVE_Hal_close",
3843
+ "type": "hal",
3844
+ "level": "low",
3845
+ "weight": 1
3846
+ },
3847
+ {
3848
+ "name": "EVE_Hal_idle",
3849
+ "type": "hal",
3850
+ "level": "low",
3851
+ "weight": 1
3852
+ }
3853
+ ],
3854
+ "samples": [
3855
+ "sampleapp_animation",
3856
+ "sampleapp_bitmap",
3857
+ "sampleapp_flash",
3858
+ "sampleapp_font",
3859
+ "sampleapp_power",
3860
+ "sampleapp_primitives",
3861
+ "sampleapp_sound",
3862
+ "sampleapp_touch",
3863
+ "sampleapp_utility",
3864
+ "sampleapp_video",
3865
+ "sampleapp_widget"
3866
+ ],
3867
+ "keywords": [
3868
+ "draw text",
3869
+ "string",
3870
+ "text"
3871
+ ],
3872
+ "registers": [
3873
+ "CMD_RESETFONTS",
3874
+ "CMD_ROMFONT",
3875
+ "CMD_SETFONT",
3876
+ "CMD_SETFONT2"
3877
+ ]
3878
+ },
3879
+ "toggle": {
3880
+ "commands": [
3881
+ {
3882
+ "name": "EVE_CoCmd_bgColor",
3883
+ "type": "coprocessor",
3884
+ "level": "high",
3885
+ "weight": 8
3886
+ },
3887
+ {
3888
+ "name": "EVE_CoCmd_toggle",
3889
+ "type": "coprocessor",
3890
+ "level": "high",
3891
+ "weight": 8
3892
+ }
3893
+ ],
3894
+ "samples": [
3895
+ "sampleapp_touch",
3896
+ "sampleapp_utility",
3897
+ "sampleapp_widget"
3898
+ ],
3899
+ "keywords": [
3900
+ "toggle"
3901
+ ],
3902
+ "registers": []
3903
+ },
3904
+ "touch": {
3905
+ "commands": [
3906
+ {
3907
+ "name": "Esd_Calibrate",
3908
+ "type": "helper",
3909
+ "level": "high",
3910
+ "weight": 10
3911
+ },
3912
+ {
3913
+ "name": "EVE_CoCmd_button",
3914
+ "type": "coprocessor",
3915
+ "level": "high",
3916
+ "weight": 8
3917
+ },
3918
+ {
3919
+ "name": "EVE_CoCmd_calibrate",
3920
+ "type": "coprocessor",
3921
+ "level": "high",
3922
+ "weight": 8
3923
+ },
3924
+ {
3925
+ "name": "EVE_CoCmd_calibrateSub",
3926
+ "type": "coprocessor",
3927
+ "level": "high",
3928
+ "weight": 8
3929
+ },
3930
+ {
3931
+ "name": "EVE_CoCmd_keys",
3932
+ "type": "coprocessor",
3933
+ "level": "high",
3934
+ "weight": 8
3935
+ },
3936
+ {
3937
+ "name": "EVE_CoCmd_track",
3938
+ "type": "coprocessor",
3939
+ "level": "high",
3940
+ "weight": 8
3941
+ },
3942
+ {
3943
+ "name": "EVE_CoDl_tag",
3944
+ "type": "display_list",
3945
+ "level": "high",
3946
+ "weight": 8
3947
+ },
3948
+ {
3949
+ "name": "EVE_CoDl_tagMask",
3950
+ "type": "display_list",
3951
+ "level": "high",
3952
+ "weight": 8
3953
+ }
3954
+ ],
3955
+ "samples": [
3956
+ "sampleapp_animation",
3957
+ "sampleapp_primitives",
3958
+ "sampleapp_sound",
3959
+ "sampleapp_touch",
3960
+ "sampleapp_utility",
3961
+ "sampleapp_video",
3962
+ "sampleapp_widget"
3963
+ ],
3964
+ "keywords": [
3965
+ "multi-touch",
3966
+ "multitouch",
3967
+ "touch",
3968
+ "touchscreen"
3969
+ ],
3970
+ "registers": [
3971
+ "REG_CTOUCH_EXTENDED",
3972
+ "REG_CTOUCH_GESTURE",
3973
+ "REG_CTOUCH_IDS",
3974
+ "REG_CTOUCH_TOUCH0_XY",
3975
+ "REG_CTOUCH_TOUCH1_XY",
3976
+ "REG_CTOUCH_TOUCH2_XY",
3977
+ "REG_CTOUCH_TOUCH3_XY",
3978
+ "REG_CTOUCH_TOUCH4_X",
3979
+ "REG_CTOUCH_TOUCH4_Y",
3980
+ "REG_CTOUCH_TOUCHA_XY",
3981
+ "REG_CTOUCH_TOUCHB_XY",
3982
+ "REG_CTOUCH_TOUCHC_XY",
3983
+ "REG_CTOUCH_TOUCHD_X",
3984
+ "REG_CTOUCH_TOUCHD_Y",
3985
+ "REG_EHOST_TOUCH_ACK",
3986
+ "REG_EHOST_TOUCH_ID",
3987
+ "REG_EHOST_TOUCH_X",
3988
+ "REG_EHOST_TOUCH_Y",
3989
+ "REG_PATCHED_TOUCH_FAULT",
3990
+ "REG_TAG",
3991
+ "REG_TAG_X",
3992
+ "REG_TAG_Y",
3993
+ "REG_TAP_CRC",
3994
+ "REG_TAP_MASK",
3995
+ "REG_TOUCH_ADC_MODE",
3996
+ "REG_TOUCH_CHARGE",
3997
+ "REG_TOUCH_CONFIG",
3998
+ "REG_TOUCH_DIRECT_XY",
3999
+ "REG_TOUCH_DIRECT_Z1Z2",
4000
+ "REG_TOUCH_FAULT",
4001
+ "REG_TOUCH_MODE",
4002
+ "REG_TOUCH_OVERSAMPLE",
4003
+ "REG_TOUCH_RAW_XY",
4004
+ "REG_TOUCH_RZ",
4005
+ "REG_TOUCH_RZTHRESH",
4006
+ "REG_TOUCH_SCREEN_XY",
4007
+ "REG_TOUCH_SETTLE",
4008
+ "REG_TOUCH_TAG",
4009
+ "REG_TOUCH_TAG_XY",
4010
+ "REG_TOUCH_TAG1",
4011
+ "REG_TOUCH_TAG1_XY",
4012
+ "REG_TOUCH_TAG2",
4013
+ "REG_TOUCH_TAG2_XY",
4014
+ "REG_TOUCH_TAG3",
4015
+ "REG_TOUCH_TAG3_XY",
4016
+ "REG_TOUCH_TAG4",
4017
+ "REG_TOUCH_TAG4_XY",
4018
+ "REG_TOUCH_TRANSFORM_A",
4019
+ "REG_TOUCH_TRANSFORM_B",
4020
+ "REG_TOUCH_TRANSFORM_C",
4021
+ "REG_TOUCH_TRANSFORM_D",
4022
+ "REG_TOUCH_TRANSFORM_E",
4023
+ "REG_TOUCH_TRANSFORM_F",
4024
+ "REG_TRACKER",
4025
+ "REG_TRACKER_1",
4026
+ "REG_TRACKER_2",
4027
+ "REG_TRACKER_3",
4028
+ "REG_TRACKER_4"
4029
+ ]
4030
+ },
4031
+ "tracking": {
4032
+ "commands": [],
4033
+ "samples": [
4034
+ "sampleapp_touch"
4035
+ ],
4036
+ "keywords": [
4037
+ "tracking"
4038
+ ],
4039
+ "registers": []
4040
+ },
4041
+ "transfer": {
4042
+ "commands": [],
4043
+ "samples": [
4044
+ "sampleapp_primitives"
4045
+ ],
4046
+ "keywords": [
4047
+ "transfer"
4048
+ ],
4049
+ "registers": []
4050
+ },
4051
+ "transform": {
4052
+ "commands": [],
4053
+ "samples": [
4054
+ "sampleapp_bitmap"
4055
+ ],
4056
+ "keywords": [
4057
+ "transform"
4058
+ ],
4059
+ "registers": []
4060
+ },
4061
+ "ui": {
4062
+ "commands": [
4063
+ {
4064
+ "name": "Draw_Text",
4065
+ "type": "helper",
4066
+ "level": "high",
4067
+ "weight": 10
4068
+ },
4069
+ {
4070
+ "name": "Draw_Text2",
4071
+ "type": "helper",
4072
+ "level": "high",
4073
+ "weight": 10
4074
+ },
4075
+ {
4076
+ "name": "Draw_TextColor",
4077
+ "type": "helper",
4078
+ "level": "high",
4079
+ "weight": 10
4080
+ },
4081
+ {
4082
+ "name": "EVE_CoCmd_animDraw",
4083
+ "type": "coprocessor",
4084
+ "level": "high",
4085
+ "weight": 8
4086
+ },
4087
+ {
4088
+ "name": "EVE_CoCmd_animFrame",
4089
+ "type": "coprocessor",
4090
+ "level": "high",
4091
+ "weight": 8
4092
+ },
4093
+ {
4094
+ "name": "EVE_CoCmd_animFrameRam",
4095
+ "type": "coprocessor",
4096
+ "level": "high",
4097
+ "weight": 8
4098
+ },
4099
+ {
4100
+ "name": "EVE_CoCmd_animStart",
4101
+ "type": "coprocessor",
4102
+ "level": "high",
4103
+ "weight": 8
4104
+ },
4105
+ {
4106
+ "name": "EVE_CoCmd_animStartRam",
4107
+ "type": "coprocessor",
4108
+ "level": "high",
4109
+ "weight": 8
4110
+ },
4111
+ {
4112
+ "name": "EVE_CoCmd_animStop",
4113
+ "type": "coprocessor",
4114
+ "level": "high",
4115
+ "weight": 8
4116
+ },
4117
+ {
4118
+ "name": "EVE_CoCmd_animXY",
4119
+ "type": "coprocessor",
4120
+ "level": "high",
4121
+ "weight": 8
4122
+ },
4123
+ {
4124
+ "name": "EVE_CoCmd_arc",
4125
+ "type": "coprocessor",
4126
+ "level": "high",
4127
+ "weight": 8
4128
+ },
4129
+ {
4130
+ "name": "EVE_CoCmd_bgColor",
4131
+ "type": "coprocessor",
4132
+ "level": "high",
4133
+ "weight": 8
4134
+ },
4135
+ {
4136
+ "name": "EVE_CoCmd_bitmapTransform",
4137
+ "type": "coprocessor",
4138
+ "level": "high",
4139
+ "weight": 8
4140
+ },
4141
+ {
4142
+ "name": "EVE_CoCmd_button",
4143
+ "type": "coprocessor",
4144
+ "level": "high",
4145
+ "weight": 8
4146
+ },
4147
+ {
4148
+ "name": "EVE_CoCmd_cgradient",
4149
+ "type": "coprocessor",
4150
+ "level": "high",
4151
+ "weight": 8
4152
+ },
4153
+ {
4154
+ "name": "EVE_CoCmd_clock",
4155
+ "type": "coprocessor",
4156
+ "level": "high",
4157
+ "weight": 8
4158
+ },
4159
+ {
4160
+ "name": "EVE_CoCmd_dial",
4161
+ "type": "coprocessor",
4162
+ "level": "high",
4163
+ "weight": 8
4164
+ },
4165
+ {
4166
+ "name": "EVE_CoCmd_gauge",
4167
+ "type": "coprocessor",
4168
+ "level": "high",
4169
+ "weight": 8
4170
+ },
4171
+ {
4172
+ "name": "EVE_CoCmd_gradColor",
4173
+ "type": "coprocessor",
4174
+ "level": "high",
4175
+ "weight": 8
4176
+ },
4177
+ {
4178
+ "name": "EVE_CoCmd_gradient",
4179
+ "type": "coprocessor",
4180
+ "level": "high",
4181
+ "weight": 8
4182
+ },
4183
+ {
4184
+ "name": "EVE_CoCmd_gradientA",
4185
+ "type": "coprocessor",
4186
+ "level": "high",
4187
+ "weight": 8
4188
+ },
4189
+ {
4190
+ "name": "EVE_CoCmd_keys",
4191
+ "type": "coprocessor",
4192
+ "level": "high",
4193
+ "weight": 8
4194
+ },
4195
+ {
4196
+ "name": "EVE_CoCmd_logo",
4197
+ "type": "coprocessor",
4198
+ "level": "high",
4199
+ "weight": 8
4200
+ },
4201
+ {
4202
+ "name": "EVE_CoCmd_number",
4203
+ "type": "coprocessor",
4204
+ "level": "high",
4205
+ "weight": 8
4206
+ },
4207
+ {
4208
+ "name": "EVE_CoCmd_progress",
4209
+ "type": "coprocessor",
4210
+ "level": "high",
4211
+ "weight": 8
4212
+ },
4213
+ {
4214
+ "name": "EVE_CoCmd_runAnim",
4215
+ "type": "coprocessor",
4216
+ "level": "high",
4217
+ "weight": 8
4218
+ },
4219
+ {
4220
+ "name": "EVE_CoCmd_screenSaver",
4221
+ "type": "coprocessor",
4222
+ "level": "high",
4223
+ "weight": 8
4224
+ },
4225
+ {
4226
+ "name": "EVE_CoCmd_scrollbar",
4227
+ "type": "coprocessor",
4228
+ "level": "high",
4229
+ "weight": 8
4230
+ },
4231
+ {
4232
+ "name": "EVE_CoCmd_setScratch",
4233
+ "type": "coprocessor",
4234
+ "level": "high",
4235
+ "weight": 8
4236
+ },
4237
+ {
4238
+ "name": "EVE_CoCmd_sketch",
4239
+ "type": "coprocessor",
4240
+ "level": "high",
4241
+ "weight": 8
4242
+ },
4243
+ {
4244
+ "name": "EVE_CoCmd_slider",
4245
+ "type": "coprocessor",
4246
+ "level": "high",
4247
+ "weight": 8
4248
+ },
4249
+ {
4250
+ "name": "EVE_CoCmd_snapshot",
4251
+ "type": "coprocessor",
4252
+ "level": "high",
4253
+ "weight": 8
4254
+ },
4255
+ {
4256
+ "name": "EVE_CoCmd_snapshot2",
4257
+ "type": "coprocessor",
4258
+ "level": "high",
4259
+ "weight": 8
4260
+ },
4261
+ {
4262
+ "name": "EVE_CoCmd_spinner",
4263
+ "type": "coprocessor",
4264
+ "level": "high",
4265
+ "weight": 8
4266
+ },
4267
+ {
4268
+ "name": "EVE_CoCmd_testCard",
4269
+ "type": "coprocessor",
4270
+ "level": "high",
4271
+ "weight": 8
4272
+ },
4273
+ {
4274
+ "name": "EVE_CoCmd_text",
4275
+ "type": "coprocessor",
4276
+ "level": "high",
4277
+ "weight": 8
4278
+ },
4279
+ {
4280
+ "name": "EVE_CoCmd_text_ex",
4281
+ "type": "coprocessor",
4282
+ "level": "high",
4283
+ "weight": 8
4284
+ },
4285
+ {
4286
+ "name": "EVE_CoCmd_text_s",
4287
+ "type": "coprocessor",
4288
+ "level": "high",
4289
+ "weight": 8
4290
+ },
4291
+ {
4292
+ "name": "EVE_CoCmd_toggle",
4293
+ "type": "coprocessor",
4294
+ "level": "high",
4295
+ "weight": 8
4296
+ },
4297
+ {
4298
+ "name": "EVE_CoCmd_videoFrame",
4299
+ "type": "coprocessor",
4300
+ "level": "high",
4301
+ "weight": 8
4302
+ },
4303
+ {
4304
+ "name": "EVE_CoCmd_videoStart",
4305
+ "type": "coprocessor",
4306
+ "level": "high",
4307
+ "weight": 8
4308
+ },
4309
+ {
4310
+ "name": "EVE_CoCmd_videoStartF",
4311
+ "type": "coprocessor",
4312
+ "level": "high",
4313
+ "weight": 8
4314
+ },
4315
+ {
4316
+ "name": "EVE_CoDl_begin",
4317
+ "type": "display_list",
4318
+ "level": "high",
4319
+ "weight": 8
4320
+ },
4321
+ {
4322
+ "name": "EVE_CoDl_cell",
4323
+ "type": "display_list",
4324
+ "level": "high",
4325
+ "weight": 8
4326
+ },
4327
+ {
4328
+ "name": "EVE_CoDl_clear",
4329
+ "type": "display_list",
4330
+ "level": "high",
4331
+ "weight": 8
4332
+ },
4333
+ {
4334
+ "name": "EVE_CoDl_clearColorA",
4335
+ "type": "display_list",
4336
+ "level": "high",
4337
+ "weight": 8
4338
+ },
4339
+ {
4340
+ "name": "EVE_CoDl_clearColorArgb_ex",
4341
+ "type": "display_list",
4342
+ "level": "high",
4343
+ "weight": 8
4344
+ },
4345
+ {
4346
+ "name": "EVE_CoDl_clearColorRgb",
4347
+ "type": "display_list",
4348
+ "level": "high",
4349
+ "weight": 8
4350
+ },
4351
+ {
4352
+ "name": "EVE_CoDl_clearColorRgb_ex",
4353
+ "type": "display_list",
4354
+ "level": "high",
4355
+ "weight": 8
4356
+ },
4357
+ {
4358
+ "name": "EVE_CoDl_clearStencil",
4359
+ "type": "display_list",
4360
+ "level": "high",
4361
+ "weight": 8
4362
+ },
4363
+ {
4364
+ "name": "EVE_CoDl_clearTag",
4365
+ "type": "display_list",
4366
+ "level": "high",
4367
+ "weight": 8
4368
+ },
4369
+ {
4370
+ "name": "EVE_CoDl_colorA",
4371
+ "type": "display_list",
4372
+ "level": "high",
4373
+ "weight": 8
4374
+ },
4375
+ {
4376
+ "name": "EVE_CoDl_colorArgb_ex",
4377
+ "type": "display_list",
4378
+ "level": "high",
4379
+ "weight": 8
4380
+ },
4381
+ {
4382
+ "name": "EVE_CoDl_colorMask",
4383
+ "type": "display_list",
4384
+ "level": "high",
4385
+ "weight": 8
4386
+ },
4387
+ {
4388
+ "name": "EVE_CoDl_colorRgb",
4389
+ "type": "display_list",
4390
+ "level": "high",
4391
+ "weight": 8
4392
+ },
4393
+ {
4394
+ "name": "EVE_CoDl_colorRgb_ex",
4395
+ "type": "display_list",
4396
+ "level": "high",
4397
+ "weight": 8
4398
+ },
4399
+ {
4400
+ "name": "EVE_CoDl_end",
4401
+ "type": "display_list",
4402
+ "level": "high",
4403
+ "weight": 8
4404
+ },
4405
+ {
4406
+ "name": "EVE_CoDl_vertexFormat",
4407
+ "type": "display_list",
4408
+ "level": "high",
4409
+ "weight": 8
4410
+ },
4411
+ {
4412
+ "name": "EVE_Hal_close",
4413
+ "type": "hal",
4414
+ "level": "low",
4415
+ "weight": 1
4416
+ },
4417
+ {
4418
+ "name": "EVE_Hal_idle",
4419
+ "type": "hal",
4420
+ "level": "low",
4421
+ "weight": 1
4422
+ }
4423
+ ],
4424
+ "samples": [
4425
+ "sampleapp_animation",
4426
+ "sampleapp_bitmap",
4427
+ "sampleapp_flash",
4428
+ "sampleapp_font",
4429
+ "sampleapp_power",
4430
+ "sampleapp_primitives",
4431
+ "sampleapp_sound",
4432
+ "sampleapp_touch",
4433
+ "sampleapp_utility",
4434
+ "sampleapp_video",
4435
+ "sampleapp_widget"
4436
+ ],
4437
+ "keywords": [
4438
+ "controls",
4439
+ "ui",
4440
+ "user interface"
4441
+ ],
4442
+ "registers": []
4443
+ },
4444
+ "unicode": {
4445
+ "commands": [],
4446
+ "samples": [
4447
+ "sampleapp_font"
4448
+ ],
4449
+ "keywords": [
4450
+ "unicode"
4451
+ ],
4452
+ "registers": []
4453
+ },
4454
+ "utility": {
4455
+ "commands": [
4456
+ {
4457
+ "name": "Calibration_Restore",
4458
+ "type": "helper",
4459
+ "level": "high",
4460
+ "weight": 10
4461
+ },
4462
+ {
4463
+ "name": "Calibration_Save",
4464
+ "type": "helper",
4465
+ "level": "high",
4466
+ "weight": 10
4467
+ },
4468
+ {
4469
+ "name": "Esd_Calibrate",
4470
+ "type": "helper",
4471
+ "level": "high",
4472
+ "weight": 10
4473
+ },
4474
+ {
4475
+ "name": "Init_CapacitiveTouch",
4476
+ "type": "helper",
4477
+ "level": "high",
4478
+ "weight": 10
4479
+ },
4480
+ {
4481
+ "name": "WelcomeScreen",
4482
+ "type": "helper",
4483
+ "level": "high",
4484
+ "weight": 10
4485
+ },
4486
+ {
4487
+ "name": "EVE_Cmd_restore",
4488
+ "type": "coprocessor",
4489
+ "level": "high",
4490
+ "weight": 8
4491
+ },
4492
+ {
4493
+ "name": "EVE_Cmd_waitFlush",
4494
+ "type": "coprocessor",
4495
+ "level": "high",
4496
+ "weight": 8
4497
+ },
4498
+ {
4499
+ "name": "EVE_Cmd_wr32",
4500
+ "type": "coprocessor",
4501
+ "level": "high",
4502
+ "weight": 8
4503
+ },
4504
+ {
4505
+ "name": "EVE_Cmd_wrMem",
4506
+ "type": "coprocessor",
4507
+ "level": "high",
4508
+ "weight": 8
4509
+ },
4510
+ {
4511
+ "name": "EVE_CoCmd_apiLevel",
4512
+ "type": "coprocessor",
4513
+ "level": "high",
4514
+ "weight": 8
4515
+ },
4516
+ {
4517
+ "name": "EVE_CoCmd_append",
4518
+ "type": "coprocessor",
4519
+ "level": "high",
4520
+ "weight": 8
4521
+ },
4522
+ {
4523
+ "name": "EVE_CoCmd_calibrate",
4524
+ "type": "coprocessor",
4525
+ "level": "high",
4526
+ "weight": 8
4527
+ },
4528
+ {
4529
+ "name": "EVE_CoCmd_calibrateSub",
4530
+ "type": "coprocessor",
4531
+ "level": "high",
4532
+ "weight": 8
4533
+ },
4534
+ {
4535
+ "name": "EVE_CoCmd_clearCache",
4536
+ "type": "coprocessor",
4537
+ "level": "high",
4538
+ "weight": 8
4539
+ },
4540
+ {
4541
+ "name": "EVE_CoCmd_dlStart",
4542
+ "type": "coprocessor",
4543
+ "level": "high",
4544
+ "weight": 8
4545
+ },
4546
+ {
4547
+ "name": "EVE_CoCmd_fontCache",
4548
+ "type": "coprocessor",
4549
+ "level": "high",
4550
+ "weight": 8
4551
+ },
4552
+ {
4553
+ "name": "EVE_CoCmd_fontCacheQuery",
4554
+ "type": "coprocessor",
4555
+ "level": "high",
4556
+ "weight": 8
4557
+ },
4558
+ {
4559
+ "name": "EVE_CoCmd_getImage",
4560
+ "type": "coprocessor",
4561
+ "level": "high",
4562
+ "weight": 8
4563
+ },
4564
+ {
4565
+ "name": "EVE_CoCmd_getProps",
4566
+ "type": "coprocessor",
4567
+ "level": "high",
4568
+ "weight": 8
4569
+ },
4570
+ {
4571
+ "name": "EVE_CoCmd_getPtr",
4572
+ "type": "coprocessor",
4573
+ "level": "high",
4574
+ "weight": 8
4575
+ },
4576
+ {
4577
+ "name": "EVE_CoCmd_hsf",
4578
+ "type": "coprocessor",
4579
+ "level": "high",
4580
+ "weight": 8
4581
+ },
4582
+ {
4583
+ "name": "EVE_CoCmd_inflate",
4584
+ "type": "coprocessor",
4585
+ "level": "high",
4586
+ "weight": 8
4587
+ },
4588
+ {
4589
+ "name": "EVE_CoCmd_inflate2",
4590
+ "type": "coprocessor",
4591
+ "level": "high",
4592
+ "weight": 8
4593
+ },
4594
+ {
4595
+ "name": "EVE_CoCmd_interrupt",
4596
+ "type": "coprocessor",
4597
+ "level": "high",
4598
+ "weight": 8
4599
+ },
4600
+ {
4601
+ "name": "EVE_CoCmd_logo",
4602
+ "type": "coprocessor",
4603
+ "level": "high",
4604
+ "weight": 8
4605
+ },
4606
+ {
4607
+ "name": "EVE_CoCmd_memCpy",
4608
+ "type": "coprocessor",
4609
+ "level": "high",
4610
+ "weight": 8
4611
+ },
4612
+ {
4613
+ "name": "EVE_CoCmd_memCrc",
4614
+ "type": "coprocessor",
4615
+ "level": "high",
4616
+ "weight": 8
4617
+ },
4618
+ {
4619
+ "name": "EVE_CoCmd_memSet",
4620
+ "type": "coprocessor",
4621
+ "level": "high",
4622
+ "weight": 8
4623
+ },
4624
+ {
4625
+ "name": "EVE_CoCmd_memWrite",
4626
+ "type": "coprocessor",
4627
+ "level": "high",
4628
+ "weight": 8
4629
+ },
4630
+ {
4631
+ "name": "EVE_CoCmd_memWrite32",
4632
+ "type": "coprocessor",
4633
+ "level": "high",
4634
+ "weight": 8
4635
+ },
4636
+ {
4637
+ "name": "EVE_CoCmd_memZero",
4638
+ "type": "coprocessor",
4639
+ "level": "high",
4640
+ "weight": 8
4641
+ },
4642
+ {
4643
+ "name": "EVE_CoCmd_pclkFreq",
4644
+ "type": "coprocessor",
4645
+ "level": "high",
4646
+ "weight": 8
4647
+ },
4648
+ {
4649
+ "name": "EVE_CoCmd_regRead",
4650
+ "type": "coprocessor",
4651
+ "level": "high",
4652
+ "weight": 8
4653
+ },
4654
+ {
4655
+ "name": "EVE_CoCmd_setScratch",
4656
+ "type": "coprocessor",
4657
+ "level": "high",
4658
+ "weight": 8
4659
+ },
4660
+ {
4661
+ "name": "EVE_CoCmd_sketch",
4662
+ "type": "coprocessor",
4663
+ "level": "high",
4664
+ "weight": 8
4665
+ },
4666
+ {
4667
+ "name": "EVE_CoCmd_snapshot",
4668
+ "type": "coprocessor",
4669
+ "level": "high",
4670
+ "weight": 8
4671
+ },
4672
+ {
4673
+ "name": "EVE_CoCmd_snapshot2",
4674
+ "type": "coprocessor",
4675
+ "level": "high",
4676
+ "weight": 8
4677
+ },
4678
+ {
4679
+ "name": "EVE_CoCmd_stop",
4680
+ "type": "coprocessor",
4681
+ "level": "high",
4682
+ "weight": 8
4683
+ },
4684
+ {
4685
+ "name": "EVE_CoCmd_swap",
4686
+ "type": "coprocessor",
4687
+ "level": "high",
4688
+ "weight": 8
4689
+ },
4690
+ {
4691
+ "name": "EVE_CoCmd_testCard",
4692
+ "type": "coprocessor",
4693
+ "level": "high",
4694
+ "weight": 8
4695
+ },
4696
+ {
4697
+ "name": "EVE_CoCmd_track",
4698
+ "type": "coprocessor",
4699
+ "level": "high",
4700
+ "weight": 8
4701
+ }
4702
+ ],
4703
+ "samples": [
4704
+ "sampleapp_animation",
4705
+ "sampleapp_bitmap",
4706
+ "sampleapp_flash",
4707
+ "sampleapp_font",
4708
+ "sampleapp_power",
4709
+ "sampleapp_primitives",
4710
+ "sampleapp_sound",
4711
+ "sampleapp_touch",
4712
+ "sampleapp_utility",
4713
+ "sampleapp_video",
4714
+ "sampleapp_widget"
4715
+ ],
4716
+ "keywords": [
4717
+ "utility"
4718
+ ],
4719
+ "registers": []
4720
+ },
4721
+ "video": {
4722
+ "commands": [
4723
+ {
4724
+ "name": "EVE_CoCmd_mediaFifo",
4725
+ "type": "coprocessor",
4726
+ "level": "high",
4727
+ "weight": 8
4728
+ },
4729
+ {
4730
+ "name": "EVE_CoCmd_playVideo",
4731
+ "type": "coprocessor",
4732
+ "level": "high",
4733
+ "weight": 8
4734
+ },
4735
+ {
4736
+ "name": "EVE_CoCmd_videoFrame",
4737
+ "type": "coprocessor",
4738
+ "level": "high",
4739
+ "weight": 8
4740
+ },
4741
+ {
4742
+ "name": "EVE_CoCmd_videoStart",
4743
+ "type": "coprocessor",
4744
+ "level": "high",
4745
+ "weight": 8
4746
+ },
4747
+ {
4748
+ "name": "EVE_CoCmd_videoStartF",
4749
+ "type": "coprocessor",
4750
+ "level": "high",
4751
+ "weight": 8
4752
+ }
4753
+ ],
4754
+ "samples": [
4755
+ "sampleapp_utility",
4756
+ "sampleapp_video"
4757
+ ],
4758
+ "keywords": [
4759
+ "avi",
4760
+ "video",
4761
+ "video playback"
4762
+ ],
4763
+ "registers": [
4764
+ "CMD_PLAYVIDEO",
4765
+ "CMD_VIDEOFRAME",
4766
+ "CMD_VIDEOSTART",
4767
+ "CMD_VIDEOSTARTF"
4768
+ ]
4769
+ },
4770
+ "widget": {
4771
+ "commands": [
4772
+ {
4773
+ "name": "Draw_Text",
4774
+ "type": "helper",
4775
+ "level": "high",
4776
+ "weight": 10
4777
+ },
4778
+ {
4779
+ "name": "Draw_Text2",
4780
+ "type": "helper",
4781
+ "level": "high",
4782
+ "weight": 10
4783
+ },
4784
+ {
4785
+ "name": "Draw_TextColor",
4786
+ "type": "helper",
4787
+ "level": "high",
4788
+ "weight": 10
4789
+ },
4790
+ {
4791
+ "name": "Play_MuteSound",
4792
+ "type": "helper",
4793
+ "level": "high",
4794
+ "weight": 10
4795
+ },
4796
+ {
4797
+ "name": "Show_Diaglog_Info",
4798
+ "type": "helper",
4799
+ "level": "high",
4800
+ "weight": 10
4801
+ },
4802
+ {
4803
+ "name": "Show_Diaglog_YesNo",
4804
+ "type": "helper",
4805
+ "level": "high",
4806
+ "weight": 10
4807
+ },
4808
+ {
4809
+ "name": "EVE_CoCmd_arc",
4810
+ "type": "coprocessor",
4811
+ "level": "high",
4812
+ "weight": 8
4813
+ },
4814
+ {
4815
+ "name": "EVE_CoCmd_button",
4816
+ "type": "coprocessor",
4817
+ "level": "high",
4818
+ "weight": 8
4819
+ },
4820
+ {
4821
+ "name": "EVE_CoCmd_cgradient",
4822
+ "type": "coprocessor",
4823
+ "level": "high",
4824
+ "weight": 8
4825
+ },
4826
+ {
4827
+ "name": "EVE_CoCmd_clock",
4828
+ "type": "coprocessor",
4829
+ "level": "high",
4830
+ "weight": 8
4831
+ },
4832
+ {
4833
+ "name": "EVE_CoCmd_dial",
4834
+ "type": "coprocessor",
4835
+ "level": "high",
4836
+ "weight": 8
4837
+ },
4838
+ {
4839
+ "name": "EVE_CoCmd_gauge",
4840
+ "type": "coprocessor",
4841
+ "level": "high",
4842
+ "weight": 8
4843
+ },
4844
+ {
4845
+ "name": "EVE_CoCmd_gradient",
4846
+ "type": "coprocessor",
4847
+ "level": "high",
4848
+ "weight": 8
4849
+ },
4850
+ {
4851
+ "name": "EVE_CoCmd_gradientA",
4852
+ "type": "coprocessor",
4853
+ "level": "high",
4854
+ "weight": 8
4855
+ },
4856
+ {
4857
+ "name": "EVE_CoCmd_keys",
4858
+ "type": "coprocessor",
4859
+ "level": "high",
4860
+ "weight": 8
4861
+ },
4862
+ {
4863
+ "name": "EVE_CoCmd_logo",
4864
+ "type": "coprocessor",
4865
+ "level": "high",
4866
+ "weight": 8
4867
+ },
4868
+ {
4869
+ "name": "EVE_CoCmd_number",
4870
+ "type": "coprocessor",
4871
+ "level": "high",
4872
+ "weight": 8
4873
+ },
4874
+ {
4875
+ "name": "EVE_CoCmd_progress",
4876
+ "type": "coprocessor",
4877
+ "level": "high",
4878
+ "weight": 8
4879
+ },
4880
+ {
4881
+ "name": "EVE_CoCmd_screenSaver",
4882
+ "type": "coprocessor",
4883
+ "level": "high",
4884
+ "weight": 8
4885
+ },
4886
+ {
4887
+ "name": "EVE_CoCmd_scrollbar",
4888
+ "type": "coprocessor",
4889
+ "level": "high",
4890
+ "weight": 8
4891
+ },
4892
+ {
4893
+ "name": "EVE_CoCmd_setScratch",
4894
+ "type": "coprocessor",
4895
+ "level": "high",
4896
+ "weight": 8
4897
+ },
4898
+ {
4899
+ "name": "EVE_CoCmd_sketch",
4900
+ "type": "coprocessor",
4901
+ "level": "high",
4902
+ "weight": 8
4903
+ },
4904
+ {
4905
+ "name": "EVE_CoCmd_slider",
4906
+ "type": "coprocessor",
4907
+ "level": "high",
4908
+ "weight": 8
4909
+ },
4910
+ {
4911
+ "name": "EVE_CoCmd_snapshot",
4912
+ "type": "coprocessor",
4913
+ "level": "high",
4914
+ "weight": 8
4915
+ },
4916
+ {
4917
+ "name": "EVE_CoCmd_snapshot2",
4918
+ "type": "coprocessor",
4919
+ "level": "high",
4920
+ "weight": 8
4921
+ },
4922
+ {
4923
+ "name": "EVE_CoCmd_spinner",
4924
+ "type": "coprocessor",
4925
+ "level": "high",
4926
+ "weight": 8
4927
+ },
4928
+ {
4929
+ "name": "EVE_CoCmd_testCard",
4930
+ "type": "coprocessor",
4931
+ "level": "high",
4932
+ "weight": 8
4933
+ },
4934
+ {
4935
+ "name": "EVE_CoCmd_text",
4936
+ "type": "coprocessor",
4937
+ "level": "high",
4938
+ "weight": 8
4939
+ },
4940
+ {
4941
+ "name": "EVE_CoCmd_text_ex",
4942
+ "type": "coprocessor",
4943
+ "level": "high",
4944
+ "weight": 8
4945
+ },
4946
+ {
4947
+ "name": "EVE_CoCmd_text_s",
4948
+ "type": "coprocessor",
4949
+ "level": "high",
4950
+ "weight": 8
4951
+ },
4952
+ {
4953
+ "name": "EVE_CoCmd_toggle",
4954
+ "type": "coprocessor",
4955
+ "level": "high",
4956
+ "weight": 8
4957
+ }
4958
+ ],
4959
+ "samples": [
4960
+ "sampleapp_animation",
4961
+ "sampleapp_bitmap",
4962
+ "sampleapp_flash",
4963
+ "sampleapp_font",
4964
+ "sampleapp_power",
4965
+ "sampleapp_primitives",
4966
+ "sampleapp_sound",
4967
+ "sampleapp_touch",
4968
+ "sampleapp_utility",
4969
+ "sampleapp_video",
4970
+ "sampleapp_widget"
4971
+ ],
4972
+ "keywords": [
4973
+ "control",
4974
+ "widget",
4975
+ "widgets"
4976
+ ],
4977
+ "registers": []
4978
+ }
4979
+ }