Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Vivado v2017.1 (64-bit)
SW Build 1846317 on Fri Apr 14 18:54:47 MDT 2017
IP Build 1846188 on Fri Apr 14 20:52:08 MDT 2017
Process ID: 3460
License: Customer
Current time: 12/9/17 5:34:03 PM CST
Time zone: Central Standard Time (US/Central)
OS: Red Hat Enterprise Linux Workstation release 6.6 (Santiago)
OS Version: 2.6.32-696.16.1.el6.x86_64
OS Architecture: amd64
Available processors (cores): 8
Display: :0.0
Screen size: 3360x1050
Screen resolution (DPI): 96
Available screens: 2
Available disk space: 805 GB
Default font: family=Dialog,name=Dialog,style=plain,size=12
Java version: 1.8.0_112 64-bit
Java home: /remote/Xilinx/2017.1/Vivado/2017.1/tps/lnx64/jre
JVM executable location: /remote/Xilinx/2017.1/Vivado/2017.1/tps/lnx64/jre/bin/java
Java library paths: /remote/Xilinx/2017.1/Vivado/2017.1/lib/lnx64.o:/remote/Xilinx/2017.1/Vivado/2017.1/tps/lnx64/jre/lib/amd64:/remote/Xilinx/2017.1/Vivado/2017.1/tps/lnx64/jre/lib/amd64/server:/remote/Xilinx/14.7/ISE/lib/lin64:/remote/Xilinx/14.7/ISE/smartmodel/lin64/installed_lin64/lib:/remote/Xilinx/14.7/ISE/sysgen/lib:/remote/Xilinx/14.7/EDK/lib/lin64:/remote/Xilinx/14.7/common/lib/lin64:/remote/Xilinx/2017.1/Vivado/2017.1/lnx64/tools/dot/lib:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
User name: ucart
User home directory: /local/ucart
User working directory: /local/ucart/MicroCART
User country: US
User language: en
User locale: en_US
RDI_BASEROOT: /remote/Xilinx/2017.1/Vivado
HDI_APPROOT: /remote/Xilinx/2017.1/Vivado/2017.1
RDI_DATADIR: /remote/Xilinx/2017.1/Vivado/2017.1/data
RDI_BINDIR: /remote/Xilinx/2017.1/Vivado/2017.1/bin
User preferences location: /local/ucart/.Xilinx/Vivado
Vivado preferences directory: /local/ucart/.Xilinx/Vivado/2017.1/vivado.xml
Vivado layouts directory: /local/ucart/.Xilinx/Vivado/2017.1/layouts
PlanAhead jar location: /remote/Xilinx/2017.1/Vivado/2017.1/lib/classes/planAhead.jar
Vivado Look & Feel: [Synthetica - the extended Synth Look and Feel. - ui.g.i.H]
Engine tmp dir: ./.Xil/Vivado-3460-co3050-12.ece.iastate.edu
GUI allocated memory: 159 MB
GUI max memory: 3,052 MB
Engine allocated memory: 4,934 MB
*/
// TclEventType: START_GUI
// Tcl Message: start_gui
// [GUI Memory]: 48 MB (+48098kb) [00:00:06]
// [Engine Memory]: 4,934 MB (+5022243kb) [00:00:06]
// HMemoryUtils.trashcanNow. Engine heap size: 4,944 MB. GUI used memory: 33 MB. Current time: 12/9/17 5:34:05 PM CST
selectList(PAResourceQtoS.SyntheticaGettingStartedView_RECENT_PROJECTS, "/local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.xpr", 0); // q:k (JPanel:JComponent, cg:JFrame)
// Opening Vivado Project: /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.xpr. Version: Vivado v2017.1
// bs:g (cg:JFrame): Open Project : addNotify
// HMemoryUtils.trashcanNow. Engine heap size: 4,975 MB. GUI used memory: 33 MB. Current time: 12/9/17 5:34:20 PM CST
// TclEventType: DEBUG_PROBE_SET_CHANGE
// Tcl Message: open_project /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.xpr
// TclEventType: MSGMGR_MOVEMSG
// TclEventType: FILE_SET_NEW
// TclEventType: RUN_COMPLETED
// TclEventType: RUN_CURRENT
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: IP_LOCK_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: PROJECT_NEW
// [GUI Memory]: 57 MB (+6692kb) [00:00:32]
// [GUI Memory]: 62 MB (+2690kb) [00:00:32]
// Tcl Message: open_project /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.xpr
// Tcl Message: Scanning sources... Finished scanning sources
// Tcl Message: INFO: [IP_Flow 19-234] Refreshing IP repositories INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_signal_out_1.0'.
// Tcl Message: INFO: [IP_Flow 19-2313] Loaded Vivado IP repository '/remote/Xilinx/2017.1/Vivado/2017.1/data/ip'.
// Project name: vivado_workspace; location: /local/ucart/MicroCART/quad/vivado_workspace; part: xc7z010clg400-1
// Tcl Message: open_project: Time (s): cpu = 00:00:18 ; elapsed = 00:00:08 . Memory (MB): peak = 6181.391 ; gain = 143.238 ; free physical = 2179 ; free virtual = 14140
dismissDialog("Open Project"); // bs:g (cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// [GUI Memory]: 67 MB (+1207kb) [00:00:37]
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, IP Integrator, Open Block Design]", 7, false); // u:M (JViewport:JComponent, cg:JFrame)
expandTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Simulation]", 2); // u:M (JViewport:JComponent, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_OPEN_BLOCK_DESIGN
// bs:g (cg:JFrame): Open Block Design : addNotify
// Tcl Message: update_compile_order -fileset sources_1
// TclEventType: LOAD_FEATURE
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: LOAD_FEATURE
// TclEventType: RSB_PROPERTY_CHANGE
// Tcl Message: open_bd_design {/local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/quad.bd}
// Tcl Message: Adding cell -- xilinx.com:ip:processing_system7:5.5 - processing_system7_0
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_PROPERTY_CHANGE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_OPEN_DIAGRAM
// [Engine Memory]: 5,217 MB (+37858kb) [00:00:43]
// TclEventType: RSB_CONNECTION_CHANGE
// WARNING: HTimer (WrapperUtils Delayed Delete Timer) is taking too long to process. Increasing delay to 2000 ms.
// HMemoryUtils.trashcanNow. Engine heap size: 5,227 MB. GUI used memory: 45 MB. Current time: 12/9/17 5:34:39 PM CST
// Tcl Message: Adding cell -- xilinx.com:ip:axi_protocol_converter:2.1 - auto_pc Successfully read diagram <quad> from BD file </local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/quad.bd>
// TclEventType: RSB_CONNECTION_CHANGE
// TclEventType: RSB_LOCK_CHANGE
// Tcl Message: open_bd_design: Time (s): cpu = 00:00:11 ; elapsed = 00:00:07 . Memory (MB): peak = 6298.539 ; gain = 86.133 ; free physical = 2095 ; free virtual = 14057
// 'bv' command handler elapsed time: 6 seconds
dismissDialog("Open Block Design"); // bs:g (cg:JFrame)
// [GUI Memory]: 71 MB (+416kb) [00:00:44]
selectButton(PAResourceQtoS.SystemBuilderView_ADD_IP, "System_RSB_ADD_IP"); // B:JideButton (f:CommandBar, cg:JFrame)
setText("PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE_SEARCH_FIELD", "pw"); // OverlayTextField:JTextField (DefaultOverlayable:JPanel, ResizableWindow:JWindow)
setText("PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE_SEARCH_FIELD", "pw"); // OverlayTextField:JTextField (DefaultOverlayable:JPanel, ResizableWindow:JWindow)
setText("PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE_SEARCH_FIELD", "pwm"); // OverlayTextField:JTextField (DefaultOverlayable:JPanel, ResizableWindow:JWindow)
// Run Command: PAResourceCommand.PACommandNames_CUSTOMIZE_RSB_BLOC
// HOptionPane Warning: ''pwm_signal_out_wkillswitch_3' is locked and cannot be customized. (Vivado)'
selectButton("PAResourceAtoD.CustomizeRSBBlock_IT_LOCKED_AND_CANNOT_BE_CUSTOMIZED_OK", "OK"); // JButton:AbstractButton (JPanel:JComponent, G:JDialog)
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M10_AXI] [get_bd_nets pwm_signal_out_wkillswitch_3_pwm_out_master] [get_bd_cells pwm_signal_out_wkillswitch_3]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_ANALYSIS_MSG_RESET
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_GENERATED
// [GUI Memory]: 75 MB (+789kb) [00:01:00]
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M11_AXI] [get_bd_nets pwm_signal_out_wkillswitch_0_pwm_out_master] [get_bd_cells pwm_signal_out_wkillswitch_0]
// HMemoryUtils.trashcanNow. Engine heap size: 5,249 MB. GUI used memory: 48 MB. Current time: 12/9/17 5:34:55 PM CST
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M04_AXI] [get_bd_nets pwm_recorder_2_1] [get_bd_cells pwm_recorder_2]
// TclEventType: DG_ANALYSIS_MSG_RESET
// [GUI Memory]: 80 MB (+1015kb) [00:01:01]
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M02_AXI] [get_bd_nets pwm_recorder_0_1] [get_bd_cells pwm_recorder_0]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M09_AXI] [get_bd_nets pwm_signal_out_wkillswitch_2_pwm_out_master] [get_bd_cells pwm_signal_out_wkillswitch_2]
// TclEventType: DG_ANALYSIS_MSG_RESET
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M08_AXI] [get_bd_nets pwm_signal_out_wkillswitch_1_pwm_out_master] [get_bd_cells pwm_signal_out_wkillswitch_1]
// TclEventType: DG_GRAPH_GENERATED
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M05_AXI] [get_bd_nets pwm_recorder_3_1] [get_bd_cells pwm_recorder_3]
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// [GUI Memory]: 86 MB (+2082kb) [00:01:11]
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M06_AXI] [get_bd_nets pwm_recorder_4_1] [get_bd_cells pwm_recorder_4]
// TclEventType: DG_ANALYSIS_MSG_RESET
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M07_AXI] [get_bd_nets pwm_recorder_5_1] [get_bd_cells pwm_recorder_5]
// TclEventType: DG_GRAPH_GENERATED
// Elapsed time: 16 seconds
selectButton(PAResourceQtoS.SystemBuilderView_ADD_IP, "System_RSB_ADD_IP"); // B:JideButton (f:CommandBar, cg:JFrame)
setText("PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE_SEARCH_FIELD", "pwm"); // OverlayTextField:JTextField (DefaultOverlayable:JPanel, ResizableWindow:JWindow)
applyEnter(PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE, (String) null); // O:af (JViewport:JComponent, ResizableWindow:JWindow)
// TclEventType: REPORT_IP_STATUS_STALE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: REPORT_IP_STATUS_STALE
// TclEventType: RSB_ADD_OBJECT
// TclEventType: DG_ANALYSIS_MSG_RESET
// Tcl Message: startgroup
// Tcl Message: create_bd_cell -type ip -vlnv user.org:user:pwm_signal_out:1.0 pwm_signal_out_0
// Tcl Message: endgroup
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,391 MB. GUI used memory: 49 MB. Current time: 12/9/17 5:35:15 PM CST
// [GUI Memory]: 91 MB (+703kb) [00:01:24]
// Run Command: RDIResourceCommand.RDICommands_COPY
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_signal_out_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_signal_out_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_signal_out_0}]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: delete_bd_objs [get_bd_intf_nets ps7_0_axi_periph_M03_AXI] [get_bd_nets pwm_recorder_1_1] [get_bd_cells pwm_recorder_1]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,431 MB. GUI used memory: 48 MB. Current time: 12/9/17 5:35:30 PM CST
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_out_sm_3] [get_bd_pins pwm_signal_out_3/pwm_out_sm]
// [GUI Memory]: 96 MB (+620kb) [00:01:43]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_out_sm_2] [get_bd_pins pwm_signal_out_2/pwm_out_sm]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_out_sm_1] [get_bd_pins pwm_signal_out_1/pwm_out_sm]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_out_sm_0] [get_bd_pins pwm_signal_out_0/pwm_out_sm]
// Elapsed time: 34 seconds
selectButton(PAResourceQtoS.RSBApplyAutomationBar_RUN_CONNECTION_AUTOMATION, "Run Connection Automation"); // h:k (JPanel:JComponent, cg:JFrame)
// w:p (cg:JFrame): Run Connection Automation: addNotify
selectCheckBoxTree(PAResourceAtoD.ApplyRSBMultiAutomationDialog_CHECKBOX_TREE, "[All Automation (4 out of 4 selected)]", 0, true, true, ui.utils.TriState.True); // J:a (JViewport:JComponent, w:p) - Node
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, w:p)
dismissDialog("Run Connection Automation"); // w:p (cg:JFrame)
// TclEventType: RSB_SCRIPT_TASK
// bs:g (cg:JFrame): Run Connection Automation : addNotify
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: startgroup
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_signal_out_0/S_AXI]
// Tcl Message: </pwm_signal_out_0/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C00000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_signal_out_1/S_AXI]
// Tcl Message: </pwm_signal_out_1/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C10000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_signal_out_2/S_AXI]
// Tcl Message: </pwm_signal_out_2/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C20000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_signal_out_3/S_AXI]
// Tcl Message: </pwm_signal_out_3/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C30000 [ 64K ]>
// Tcl Message: endgroup
dismissDialog("Run Connection Automation"); // bs:g (cg:JFrame)
selectButton(PAResourceCommand.PACommandNames_REGENERATE_LAYOUT, "System_regenerate_rsb_layout"); // B:JideButton (f:CommandBar, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_REGENERATE_LAYOUT
// Tcl Command: 'regenerate_bd_layout'
// TclEventType: RSB_LAYOUT_STATE
// TclEventType: RSB_REGENERATE_LAYOUT
// Tcl Message: regenerate_bd_layout
selectMenu(PAResourceItoN.MainMenuMgr_FLOW, "Flow"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
dismissMenu(PAResourceItoN.MainMenuMgr_FLOW, "Flow"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
selectMenu(PAResourceItoN.MainMenuMgr_TOOLS, "Tools"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
dismissMenu(PAResourceItoN.MainMenuMgr_TOOLS, "Tools"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
selectMenu(PAResourceItoN.MainMenuMgr_TOOLS, "Tools"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
selectMenu(PAResourceItoN.MainMenuMgr_REPORT, "Report"); // Z:JMenu (JPopupMenu:JComponent, cg:JFrame)
selectMenuItem(PAResourceCommand.PACommandNames_IP_PACKAGER_WIZARD, "Create and Package New IP..."); // ac:JMenuItem (JPopupMenu:JComponent, cg:JFrame)
dismissMenu(PAResourceItoN.MainMenuMgr_TOOLS, "Tools"); // U:JideMenu (CommandMenuBar:CommandBar, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_IP_PACKAGER_WIZARD
// P:g (cg:JFrame): Create and Package New IP: addNotify
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, P:g)
selectRadioButton(PAResourceItoN.NewIpWizard_CREATE_NEW_AXI4_IP_CREATE_AXI4, "Create a new AXI4 peripheral. Create an AXI4 IP, driver, software test application, IP Integrator AXI4 VIP simulation and debug demonstration design."); // b:a (a:C, P:g)
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, P:g)
// Elapsed time: 138 seconds
setText(PAResourceItoN.NewIpWizard_NAME_MYIP, "pwm_recorder"); // X:JTextField (JPanel:JComponent, P:g)
// Elapsed time: 31 seconds
setText(PAResourceItoN.NewIpWizard_DESCRIPTION_MY_NEW_AXI_IP, "Records the incoming pwm signal and assigns to a register"); // X:JTextField (JPanel:JComponent, P:g)
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, P:g)
// Elapsed time: 11 seconds
setText(PAResourceItoN.NewIpWizard_NAME, "S_AXI"); // X:JTextField (C:JPanel, P:g)
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, P:g)
// Elapsed time: 15 seconds
selectRadioButton(PAResourceItoN.NewIpWizard_EDIT_IP, "Edit IP"); // a:JRadioButton (JPanel:JComponent, P:g)
selectButton("FINISH", "Finish"); // JButton:AbstractButton (ButtonPanel:JPanel, P:g)
// 'q' command handler elapsed time: 203 seconds
dismissDialog("Create and Package New IP"); // P:g (cg:JFrame)
// Tcl Message: create_peripheral user.org user pwm_recorder 1.0 -dir /local/ucart/MicroCART/quad/ip_repo
// Tcl Message: add_peripheral_interface S_AXI -interface_mode slave -axi_type lite [ipx::find_open_core user.org:user:pwm_recorder:1.0]
// TclEventType: PACKAGER_OBJECT_ADD
// Tcl Message: generate_peripheral -driver -bfm_example_design -debug_hw_example_design [ipx::find_open_core user.org:user:pwm_recorder:1.0]
// Tcl Message: write_peripheral [ipx::find_open_core user.org:user:pwm_recorder:1.0]
// TclEventType: PROJECT_CHANGE
// Tcl Message: set_property ip_repo_paths {/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_signal_out_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_signal_out_wkillswitch_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0 /local/ucart/MicroCART/quad/ip_repo/myip_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0 /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0} [current_project]
// TclEventType: CREATE_IP_CATALOG
// TclEventType: RSB_BITABEN_IPREPODATA_REFRESH
// bs:g (cg:JFrame): Create Peripheral IP : addNotify
// TclEventType: RSB_BITABEN_IPREPODATA_REFRESH
// TclEventType: CREATE_IP_CATALOG
// Tcl Message: update_ip_catalog -rebuild
// Tcl Message: INFO: [IP_Flow 19-234] Refreshing IP repositories INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'. INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_signal_out_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// TclEventType: FILE_SET_NEW
// TclEventType: RUN_ADD
// TclEventType: RUN_CURRENT
// TclEventType: PROJECT_NEW
// Tcl Message: ipx::edit_ip_in_project -upgrade true -name edit_pwm_recorder_v1_0 -directory /local/ucart/MicroCART/quad/ip_repo /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0/component.xml
// Tcl Message: INFO: [IP_Flow 19-234] Refreshing IP repositories INFO: [IP_Flow 19-1704] No user IP repositories specified
// TclEventType: PROJECT_NEW
// Tcl Message: INFO: [IP_Flow 19-2313] Loaded Vivado IP repository '/remote/Xilinx/2017.1/Vivado/2017.1/data/ip'.
// TclEventType: FILE_SET_OPTIONS_CHANGE
// HMemoryUtils.trashcanNow. Engine heap size: 5,468 MB. GUI used memory: 61 MB. Current time: 12/9/17 5:39:30 PM CST
// TclEventType: FILE_SET_OPTIONS_CHANGE
// TclEventType: RSB_BITABEN_IPREPODATA_REFRESH
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: FILE_SET_CHANGE
// TclEventType: PACKAGER_CURRENT_CORE
// Run Command: PAResourceCommand.PACommandNames_IP_PACKAGER
// Tcl Message: INFO: [IP_Flow 19-234] Refreshing IP repositories INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'. INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_signal_out_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'.
// Tcl Message: INFO: [IP_Flow 19-1700] Loaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'. INFO: [IP_Flow 19-795] Syncing license key meta-data INFO: [IP_Flow 19-793] Syncing display name meta-data INFO: [IP_Flow 19-798] Syncing taxonomy meta-data
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// Tcl Message: ipx::edit_ip_in_project: Time (s): cpu = 00:00:13 ; elapsed = 00:00:06 . Memory (MB): peak = 6545.871 ; gain = 41.031 ; free physical = 1980 ; free virtual = 13942
dismissDialog("Create Peripheral IP"); // bs:g (cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// [Engine Memory]: 5,495 MB (+17803kb) [00:05:39]
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_GRAPH_STALE
// Tcl Message: update_compile_order -fileset sources_1
// [GUI Memory]: 102 MB (+1301kb) [00:05:42]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Elapsed time: 25 seconds
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd)]", 1); // B:i (D:JPanel, cg:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd), pwm_recorder_v1_0_S_AXI_inst : pwm_recorder_v1_0_S_AXI(arch_imp) (pwm_recorder_v1_0_S_AXI.vhd)]", 2, false); // B:i (D:JPanel, cg:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd), pwm_recorder_v1_0_S_AXI_inst : pwm_recorder_v1_0_S_AXI(arch_imp) (pwm_recorder_v1_0_S_AXI.vhd)]", 2, false, false, false, false, false, true); // B:i (D:JPanel, cg:JFrame) - Double Click
// HMemoryUtils.trashcanNow. Engine heap size: 5,517 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:40:05 PM CST
// Elapsed time: 29 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "Package IP - pwm_recorder", 1); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 243, 262); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 71, 291); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 81 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 394, 325); // bI:J (JPanel:JComponent, cg:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd)]", 1, true); // B:i (D:JPanel, cg:JFrame) - Node
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd)]", 1, true, false, false, false, false, true); // B:i (D:JPanel, cg:JFrame) - Double Click - Node
selectCodeEditor("pwm_recorder_v1_0.vhd", 105, 325); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 100, 185); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 80, 213); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 269, 221); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 227, 201); // bI:J (JPanel:JComponent, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
// [GUI Memory]: 109 MB (+2091kb) [00:08:41]
// Elapsed time: 19 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 372, 304); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 266, 526); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 323, 475); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 16 seconds
selectCodeEditor("pwm_recorder_v1_0.vhd", 124, 276); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 90, 286); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("pwm_recorder_v1_0.vhd", 274, 287); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,570 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:43:20 PM CST
// WARNING: HTimer (ActiveMsgMonitor Process Messages Timer) is taking too long to process. Increasing delay to 2000 ms.
selectCodeEditor("pwm_recorder_v1_0.vhd", 140, 311); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectCodeEditor("pwm_recorder_v1_0.vhd", 301, 332); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// [GUI Memory]: 115 MB (+949kb) [00:09:29]
// TclEventType: DG_GRAPH_GENERATED
// Elapsed time: 13 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 401, 276); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'c'); // bI:J (JPanel:JComponent, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 296, 68); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 168, 97); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 188, 83); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 93, 79); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 330, 83); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 296, 214); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 133, 252); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 84, 237); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// HMemoryUtils.trashcanNow. Engine heap size: 5,610 MB. GUI used memory: 66 MB. Current time: 12/9/17 5:44:00 PM CST
// TclEventType: DG_GRAPH_GENERATED
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_ANALYSIS_MSG_RESET
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 400, 227); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: DG_GRAPH_GENERATED
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd)]", 1); // B:i (D:JPanel, cg:JFrame)
// Elapsed time: 71 seconds
selectCodeEditor("pwm_recorder_v1_0.vhd", 192, 227); // bI:J (JPanel:JComponent, cg:JFrame)
// [GUI Memory]: 123 MB (+1733kb) [00:11:23]
selectCodeEditor("pwm_recorder_v1_0.vhd", 205, 249); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 205, 249, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
selectCodeEditor("pwm_recorder_v1_0.vhd", 150, 83); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 108, 264); // bI:J (JPanel:JComponent, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 152, 279); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,650 MB. GUI used memory: 66 MB. Current time: 12/9/17 5:45:45 PM CST
// TclEventType: DG_GRAPH_GENERATED
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources]", 0, true, false, false, false, true, false); // B:i (D:JPanel, cg:JFrame) - Popup Trigger - Node
selectMenu(PAResourceCommand.PACommandNames_AUTO_UPDATE_HIER, "Hierarchy Update"); // Z:JMenu (ai:JPopupMenu, cg:JFrame)
selectMenu(PAResourceQtoS.SrcMenu_IP_HIERARCHY, "IP Hierarchy"); // Z:JMenu (ai:JPopupMenu, cg:JFrame)
selectMenu(PAResourceQtoS.SrcMenu_IP_HIERARCHY, "IP Hierarchy"); // Z:JMenu (ai:JPopupMenu, cg:JFrame)
selectMenuItem(PAResourceCommand.PACommandNames_ADD_SOURCES, "Add Sources..."); // ac:JMenuItem (ai:JPopupMenu, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_ADD_SOURCES
// c:g (cg:JFrame): Add Sources: addNotify
selectButton("NEXT", "Next >"); // JButton:AbstractButton (ButtonPanel:JPanel, c:g)
selectButton(PAResourceQtoS.SrcChooserPanel_ADD_OR_CREATE_SOURCE_FILE, "Add"); // B:JideButton (f:CommandBar, c:g)
selectMenuItem(PAResourceQtoS.SrcChooserPanel_ADD_HDL_AND_NETLIST_FILES_TO_YOUR_PROJECT, "Add Files..."); // ac:JMenuItem (ai:JPopupMenu, c:g)
// Elapsed time: 14 seconds
setFileChooser("/local/ucart/MicroCART/quad/xps_projects/system/pcores/pwm_recorder_v1_04_a/hdl/vhdl/pwm_rec.vhd");
selectButton("FINISH", "Finish"); // JButton:AbstractButton (ButtonPanel:JPanel, c:g)
// 'h' command handler elapsed time: 20 seconds
dismissDialog("Add Sources"); // c:g (cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: add_files -norecurse -copy_to /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0/src /local/ucart/MicroCART/quad/xps_projects/system/pcores/pwm_recorder_v1_04_a/hdl/vhdl/pwm_rec.vhd
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,672 MB. GUI used memory: 68 MB. Current time: 12/9/17 5:46:15 PM CST
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: update_compile_order -fileset sources_1
// WARNING: HTimer (FileMgr Design Graph Update Timer) is taking too long to process. Increasing delay to 3000 ms.
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Elapsed time: 26 seconds
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 90, 176); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 64, 126); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 134, 131); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 10 seconds
selectButton(RDIResource.HCodeEditor_CLOSE, (String) null); // k:JideButton (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 408, 205); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 32 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 228, 440); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 33 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 272, 408); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 26, 113); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 141, 299); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 23 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 66, 171); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 165, 352); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 71, 173); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 10 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 109, 388); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 12 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 77, 364); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 98, 367); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 208, 425); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 84, 386); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 70, 386); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 151, 400); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 40 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 407, 404); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
typeControlKey(null, null, 'z');
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 133, 216); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 256, 202); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 19 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 117, 359); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 112, 352); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 144, 340); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 125, 491); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 139, 410); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 107, 393); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 184, 418); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 95, 157); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 111, 536); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 70, 414); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey(null, null, 'z');
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 134, 427); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 10 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 66, 63); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 68, 409); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 144, 405); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 105, 391); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 129, 374); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 110, 383); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 17, 376); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 165, 427); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 13 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 91, 127); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 159, 173); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 159, 173, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 163, 308); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 176, 168); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 176, 168, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 136, 289); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 125, 196); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 127, 186); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 127, 186, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 169, 350); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 10 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 157, 321); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 26 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 491, 259); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 19 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 110, 249); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 29, 276); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 24, 265); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,712 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:53:30 PM CST
// Elapsed time: 17 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 213, 360); // bI:J (JPanel:JComponent, cg:JFrame)
// Elapsed time: 10 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 37, 486); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,732 MB. GUI used memory: 113 MB. Current time: 12/9/17 5:53:55 PM CST
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: update_compile_order -fileset sources_1
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Elapsed time: 15 seconds
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 221, 255); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 241, 308); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 325, 174); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// [Engine Memory]: 5,772 MB (+2740kb) [00:20:22]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 250, 405); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 250, 405, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
// HMemoryUtils.trashcanNow. Engine heap size: 5,772 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:54:20 PM CST
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 208, 104); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 208, 104, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 204, 112); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 204, 112, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'c'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 216, 413); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 216, 413, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 144, 132); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 144, 132, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'c'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 256, 424); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 256, 424, false, false, false, false, true); // bI:J (JPanel:JComponent, cg:JFrame) - Double Click
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// HMemoryUtils.trashcanNow. Engine heap size: 5,792 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:54:35 PM CST
// TclEventType: DG_GRAPH_GENERATED
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 95, 274); // bI:J (JPanel:JComponent, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0.vhd", 3); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 335, 210); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 420, 258); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 396, 256); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0.vhd", 401, 263); // bI:J (JPanel:JComponent, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0.vhd", 'c'); // bI:J (JPanel:JComponent, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 2); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
typeControlKey((HResource) null, "pwm_recorder_v1_0_S_AXI.vhd", 'v'); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 212, 292); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 111, 294); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 281, 321); // bI:J (JPanel:JComponent, cg:JFrame)
// HMemoryUtils.trashcanNow. Engine heap size: 5,812 MB. GUI used memory: 67 MB. Current time: 12/9/17 5:55:05 PM CST
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 106, 354); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 139, 396); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 143, 387); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 129, 396); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 58, 372); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 84, 381); // bI:J (JPanel:JComponent, cg:JFrame)
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 329, 441); // bI:J (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// HMemoryUtils.trashcanNow. Engine heap size: 5,832 MB. GUI used memory: 68 MB. Current time: 12/9/17 5:55:25 PM CST
selectCodeEditor("pwm_recorder_v1_0_S_AXI.vhd", 149, 321); // bI:J (JPanel:JComponent, cg:JFrame)
expandTree(PAResourceEtoH.FileSetPanel_FILE_SET_PANEL_TREE, "[root, Design Sources, pwm_recorder_v1_0(arch_imp) (pwm_recorder_v1_0.vhd), pwm_recorder_v1_0_S_AXI_inst : pwm_recorder_v1_0_S_AXI(arch_imp) (pwm_recorder_v1_0_S_AXI.vhd)]", 2); // B:i (D:JPanel, cg:JFrame)
selectTab("PlanAheadTabBaseWorkspace_JideTabbedPane", (HResource) null, "Package IP - pwm_recorder", 1); // k:TdiGroup (j:CodeEditorDocumentPane, cg:JFrame)
selectList(PAResourceOtoP.PackagerStepsPanel_PACKAGER_STEPS_LIST, "File Groups", 2); // an:k (JViewport:JComponent, cg:JFrame)
selectButton(PAResourceItoN.MessageBanner_CHANGES_DETECTED_IN_VIVADO_PROJECT_THAT, "Merge changes from File Groups Wizard"); // h:k (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_COMPONENT_RESET
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_OBJECT_CHANGE
// Tcl Message: ipx::merge_project_changes files [ipx::current_core]
selectList(PAResourceOtoP.PackagerStepsPanel_PACKAGER_STEPS_LIST, "Customization Parameters", 3); // an:k (JViewport:JComponent, cg:JFrame)
selectButton(PAResourceItoN.MessageBanner_CHANGES_DETECTED_IN_VIVADO_PROJECT_THAT, "Merge changes from Customization Parameters Wizard"); // h:k (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_COMPONENT_RESET
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_OBJECT_CHANGE
// Tcl Message: ipx::merge_project_changes hdl_parameters [ipx::current_core]
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
// Tcl Message: INFO: [IP_Flow 19-4753] Inferred signal 'reset' from port 's_axi_aresetn' as interface 's_axi_aresetn'. INFO: [IP_Flow 19-4728] Bus Interface 's_axi_aresetn': Added interface parameter 'POLARITY' with value 'ACTIVE_LOW'. INFO: [IP_Flow 19-4753] Inferred signal 'clock' from port 's_axi_aclk' as interface 's_axi_aclk'.
selectList(PAResourceOtoP.PackagerStepsPanel_PACKAGER_STEPS_LIST, "Ports and Interfaces", 4); // an:k (JViewport:JComponent, cg:JFrame)
// TclEventType: PACKAGER_MESSAGE_RESET
// TclEventType: PACKAGER_MESSAGE_UPDATE
selectButton(PAResourceOtoP.PackagerStepContentPanel_MESSAGES, "1"); // h:k (JPanel:JComponent, cg:JFrame)
selectList(PAResourceOtoP.PackagerStepsPanel_PACKAGER_STEPS_LIST, "Review and Package", 7); // an:k (JViewport:JComponent, cg:JFrame)
selectButton(PAResourceQtoS.ReviewContentPanel_RE_PACKAGE_IP, "Re-Package IP"); // a:JButton (JPanel:JComponent, cg:JFrame)
// TclEventType: PACKAGER_OBJECT_CHANGE
// Tcl Message: set_property core_revision 2 [ipx::current_core]
// Tcl Message: ipx::create_xgui_files [ipx::current_core]
// Tcl Message: ipx::update_checksums [ipx::current_core]
// Tcl Message: ipx::save_core [ipx::current_core]
// bs:g (cg:JFrame): Package IP : addNotify
selectButton("PAResourceQtoS.ReviewContentPanel_FINISHED_PACKAGING_SUCCESSFULLY_DO_Yes", "Yes"); // JButton:AbstractButton (JPanel:JComponent, G:JDialog)
// TclEventType: FILE_SET_CHANGE
// TclEventType: PROJECT_CLOSE
// TclEventType: FILE_SET_CHANGE
// TclEventType: PROJECT_CLOSE
// [GUI Memory]: 132 MB (+3461kb) [00:21:59]
// HMemoryUtils.trashcanNow. Engine heap size: 5,809 MB. GUI used memory: 77 MB. Current time: 12/9/17 5:55:54 PM CST
// Tcl Message: close_project -delete
dismissDialog("Package IP"); // bs:g (cg:JFrame)
// TclEventType: CREATE_IP_CATALOG
// TclEventType: RSB_BITABEN_IPREPODATA_REFRESH
// TclEventType: CREATE_IP_CATALOG
// Tcl Message: update_ip_catalog -rebuild -repo_path /local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0
// Tcl Message: INFO: [IP_Flow 19-725] Reloaded user IP repository '/local/ucart/MicroCART/quad/ip_repo/pwm_recorder_1.0'
selectButton(PAResourceQtoS.SystemBuilderView_ADD_IP, "System_RSB_ADD_IP"); // B:JideButton (f:CommandBar, cg:JFrame)
setText("PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE_SEARCH_FIELD", "pw"); // OverlayTextField:JTextField (DefaultOverlayable:JPanel, ResizableWindow:JWindow)
selectTreeTable(PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE, "pwm_recorder_v1.0", 0, "pwm_recorder_v1.0", 0, false); // O:af (JViewport:JComponent, ResizableWindow:JWindow)
selectTreeTable(PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE, "pwm_recorder_v1.0", 0, "pwm_recorder_v1.0", 0, false); // O:af (JViewport:JComponent, ResizableWindow:JWindow)
expandTreeTable(PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE, "pwm_recorder_v1.0", 0); // O:af (JViewport:JComponent, ResizableWindow:JWindow)
selectTreeTable(PAResourceAtoD.CoreTreeTablePanel_CORE_TREE_TABLE, "pwm_recorder_v1.0", 0, "pwm_recorder_v1.0", 0, false, false, false, false, false, true); // O:af (JViewport:JComponent, ResizableWindow:JWindow) - Double Click
// TclEventType: REPORT_IP_STATUS_STALE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: REPORT_IP_STATUS_STALE
// TclEventType: RSB_ADD_OBJECT
// Tcl Message: startgroup
// Tcl Message: create_bd_cell -type ip -vlnv user.org:user:pwm_recorder:1.0 pwm_recorder_0
// Tcl Message: endgroup
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// Run Command: RDIResourceCommand.RDICommands_COPY
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_GENERATED
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_COPY_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: copy_bd_objs / [get_bd_cells {pwm_recorder_0}]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_0] [get_bd_pins pwm_recorder_0/pwm_in_master]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_1] [get_bd_pins pwm_recorder_1/pwm_in_master]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_2] [get_bd_pins pwm_recorder_2/pwm_in_master]
// Tcl Command: 'set_property location {-20 86} [get_bd_ports pwm_recorder_3]'
// TclEventType: RSB_CANVAS_LOCATION
// Tcl Message: set_property location {-20 86} [get_bd_ports pwm_recorder_3]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_3] [get_bd_pins pwm_recorder_3/pwm_in_master]
// Run Command: RDIResourceCommand.RDICommands_DELETE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: REPORT_IP_STATUS_STALE
// Tcl Message: delete_bd_objs [get_bd_cells pwm_recorder_6]
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_4] [get_bd_pins pwm_recorder_4/pwm_in_master]
// TclEventType: RSB_CONNECTION_CHANGE
// Tcl Message: connect_bd_net [get_bd_ports pwm_recorder_5] [get_bd_pins pwm_recorder_5/pwm_in_master]
// Elapsed time: 32 seconds
selectButton(PAResourceQtoS.RSBApplyAutomationBar_RUN_CONNECTION_AUTOMATION, "Run Connection Automation"); // h:k (JPanel:JComponent, cg:JFrame)
// w:p (cg:JFrame): Run Connection Automation: addNotify
selectCheckBoxTree(PAResourceAtoD.ApplyRSBMultiAutomationDialog_CHECKBOX_TREE, "[All Automation (6 out of 6 selected)]", 0, true, true, ui.utils.TriState.True); // J:a (JViewport:JComponent, w:p) - Node
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, w:p)
dismissDialog("Run Connection Automation"); // w:p (cg:JFrame)
// TclEventType: RSB_SCRIPT_TASK
// bs:g (cg:JFrame): Run Connection Automation : addNotify
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: startgroup
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_0/S_AXI]
// TclEventType: RSB_SCRIPT_TASK
// Tcl Message: </pwm_recorder_0/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C40000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_1/S_AXI]
// Tcl Message: </pwm_recorder_1/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C50000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_2/S_AXI]
// Tcl Message: </pwm_recorder_2/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C60000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_3/S_AXI]
// Tcl Message: </pwm_recorder_3/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C70000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_4/S_AXI]
// Tcl Message: </pwm_recorder_4/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C80000 [ 64K ]>
// Tcl Message: apply_bd_automation -rule xilinx.com:bd_rule:axi4 -config {Master "/processing_system7_0/M_AXI_GP0" intc_ip "/ps7_0_axi_periph" Clk_xbar "Auto" Clk_master "Auto" Clk_slave "Auto" } [get_bd_intf_pins pwm_recorder_5/S_AXI]
// Tcl Message: </pwm_recorder_5/S_AXI/S_AXI_reg> is being mapped into </processing_system7_0/Data> at <0x43C90000 [ 64K ]>
// Tcl Message: endgroup
dismissDialog("Run Connection Automation"); // bs:g (cg:JFrame)
// Tcl Command: 'set_property location {1 97 -383} [get_bd_cells pwm_recorder_4]'
// TclEventType: RSB_CANVAS_LOCATION
// Tcl Message: set_property location {1 97 -383} [get_bd_cells pwm_recorder_4]
selectButton(PAResourceCommand.PACommandNames_REGENERATE_LAYOUT, "System_regenerate_rsb_layout"); // B:JideButton (f:CommandBar, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_REGENERATE_LAYOUT
// Tcl Command: 'regenerate_bd_layout'
// TclEventType: RSB_LAYOUT_STATE
// TclEventType: RSB_REGENERATE_LAYOUT
// Tcl Message: regenerate_bd_layout
selectTree(PAResourceEtoH.FlowNavigatorTreePanel_FLOW_NAVIGATOR_TREE, "[, Program and Debug, Generate Bitstream]", 20, false); // u:M (JViewport:JComponent, cg:JFrame)
// Run Command: PAResourceCommand.PACommandNames_RUN_BITGEN
// ak:q (cg:JFrame): Save Project: addNotify
selectButton(PAResourceQtoS.SaveProjectUtils_SAVE, "Save"); // a:JButton (JPanel:JComponent, ak:q)
// bs:g (cg:JFrame): Save Constraints : addNotify
dismissDialog("Save Project"); // ak:q (cg:JFrame)
// TclEventType: RSB_SAVE_DIAGRAM
// TclEventType: FILE_SET_CHANGE
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// Tcl Message: save_bd_design
// Tcl Message: Wrote : </local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/quad.bd> Wrote : </local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/ui/bd_a7208ac7.ui>
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_SAVE_DIAGRAM
// x:aN (cg:JFrame): Synthesis is Out-of-date: addNotify
dismissDialog("Save Constraints"); // bs:g (cg:JFrame)
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
selectButton(RDIResource.BaseDialog_YES, "Yes"); // a:JButton (JPanel:JComponent, x:aN)
// bs:g (cg:JFrame): Resetting Runs : addNotify
// TclEventType: RUN_MODIFY
dismissDialog("Synthesis is Out-of-date"); // x:aN (cg:JFrame)
// TclEventType: RUN_RESET
// TclEventType: RUN_MODIFY
// Tcl Message: reset_run synth_1
// TclEventType: RUN_MODIFY
// TclEventType: RUN_RESET
// TclEventType: RUN_MODIFY
// Tcl Message: reset_run quad_xbar_0_synth_1
// f:p (cg:JFrame): Launch Runs: addNotify
selectButton(RDIResource.BaseDialog_OK, "OK"); // a:JButton (JPanel:JComponent, f:p)
// 'cp' command handler elapsed time: 7 seconds
dismissDialog("Launch Runs"); // f:p (cg:JFrame)
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: RSB_REMOVE_OBJECT
// Tcl Message: launch_runs impl_1 -to_step write_bitstream -jobs 4
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: DG_GRAPH_STALE
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// bs:g (cg:JFrame): Generate Bitstream : addNotify
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_REMOVE_OBJECT
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// Tcl Message: Wrote : </local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/quad.bd>
// TclEventType: FILE_SET_CHANGE
// TclEventType: RSB_SCRIPT_TASK
// TclEventType: FILE_SET_CHANGE
// TclEventType: PROJ_DESIGN_MODE_SET
// Tcl Message: VHDL Output written to : /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/hdl/quad.vhd VHDL Output written to : /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/hdl/quad_wrapper.vhd
// Tcl Message: INFO: [BD 41-1029] Generation completed for the IP Integrator block ps7_0_axi_periph/s00_couplers/auto_pc .
// Tcl Message: Exporting to file /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/hw_handoff/quad.hwh Generated Block Design Tcl file /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/hw_handoff/quad_bd.tcl Generated Hardware Definition File /local/ucart/MicroCART/quad/vivado_workspace/vivado_workspace.srcs/sources_1/bd/quad/hdl/quad.hwdef
// Tcl Message: INFO: [IP_Flow 19-4993] Using cached IP synthesis design for IP quad_auto_pc_0, cache-ID = 636076100619ff6f; cache size = 4.802 MB.
// TclEventType: PROJ_DESIGN_MODE_SET
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: FILE_SET_NEW
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_ADD
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET
// TclEventType: DG_GRAPH_GENERATED
// TclEventType: FILE_SET_CHANGE
// TclEventType: RUN_LAUNCH
// TclEventType: DG_ANALYSIS_MSG_RESET