-
Notifications
You must be signed in to change notification settings - Fork 2
/
system.log
6550 lines (6037 loc) · 401 KB
/
system.log
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
Xilinx Platform Studio (XPS)
Xilinx EDK 12.1 Build EDK_MS1.53d
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
Generating Block Diagram to Buffer
/opt/Xilinx/12.1/ISE_DS/EDK/data/xml/xslscripts/ConvertEdwardVersion.xsl
Generated Block Diagram SVG
At Local date and time: Mon May 31 23:44:56 2010
make -f system.make download started...
*********************************************
Initializing BRAM contents of the bitstream
*********************************************
bitinit -p xc5vfx70tff1136-1 system.mhs -pe ppc440_0 bootloops/ppc440_0.elf \
-bt implementation/system.bit -o implementation/download.bit
bitinit version Xilinx EDK 12.1 Build EDK_MS1.53d
Copyright (c) Xilinx Inc. 2002.
Parsing MHS File system.mhs...
Overriding IP level properties ...
orig_family is virtex5
INFO:EDK:1560 - IPNAME:ppc440mc_ddr2 INSTANCE:DDR2_SDRAM -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/ppc440mc_ddr2_v3_0
0_b/data/ppc440mc_ddr2_v2_1_0.mpd line 103 - tcl is overriding PARAMETER
C_IODELAY_GRP value to DDR2_SDRAM
Performing IP level DRCs on properties...
Running DRC Tcl procedures for OPTION IPLEVEL_DRC_PROC...
Address Map for Processor ppc440_0
(0b0000000000-0b0011111111) ppc440_0
(0000000000-0x0fffffff) ppc440_0 plb_v46_0
(0000000000-0x0fffffff) DDR2_SDRAM ppc440_0_PPC440MC
(0x81000000-0x8100ffff) Ethernet_MAC plb_v46_0
(0x81400000-0x8140ffff) Push_Buttons_5Bit plb_v46_0
(0x81420000-0x8142ffff) LEDs_Positions plb_v46_0
(0x81440000-0x8144ffff) LEDs_8Bit plb_v46_0
(0x81460000-0x8146ffff) DIP_Switches_8Bit plb_v46_0
(0x81480000-0x8148ffff) plbv46_2_wb_enconder_0 plb_v46_0
(0x81600000-0x8160ffff) IIC_EEPROM plb_v46_0
(0x81800000-0x8180ffff) xps_intc_0 plb_v46_0
(0x83600000-0x8360ffff) SysACE_CompactFlash plb_v46_0
(0x83a00000-0x83a0ffff) xps_timebase_wdt_0 plb_v46_0
(0x83c00000-0x83c0ffff) xps_timer_0 plb_v46_0
(0x84000000-0x8400ffff) RS232_Uart_1 plb_v46_0
(0x86a00000-0x86a0ffff) xps_ps2_0 plb_v46_0
(0x86e00000-0x86e0ffff) xps_tft_0 plb_v46_0
(0x8c000000-0x8dffffff) FLASH plb_v46_0
(0xffff0000-0xffffffff) xps_bram_if_cntlr_1 plb_v46_0
INFO:EDK:1560 - IPNAME:ppc440_virtex5 INSTANCE:ppc440_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/ppc440_virtex5_v1_
01_a/data/ppc440_virtex5_v2_1_0.mpd line 173 - tool is overriding PARAMETER
C_SPLB0_P2P value to 0
Computing clock values...
INFO:EDK:1560 - IPNAME:ppc440_virtex5 INSTANCE:ppc440_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/ppc440_virtex5_v1_
01_a/data/ppc440_virtex5_v2_1_0.mpd line 168 - tool is overriding PARAMETER
C_SPLB0_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/da
ta/plb_v46_v2_1_0.mpd line 68 - tool is overriding PARAMETER
C_PLBV46_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/da
ta/plb_v46_v2_1_0.mpd line 69 - tool is overriding PARAMETER
C_PLBV46_NUM_SLAVES value to 17
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/da
ta/plb_v46_v2_1_0.mpd line 70 - tool is overriding PARAMETER
C_PLBV46_MID_WIDTH value to 1
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/da
ta/plb_v46_v2_1_0.mpd line 72 - tool is overriding PARAMETER C_PLBV46_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_bram_if_cntlr INSTANCE:xps_bram_if_cntlr_1 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_bram_if_cntlr_
v1_00_b/data/xps_bram_if_cntlr_v2_1_0.mpd line 73 - tool is overriding
PARAMETER C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_bram_if_cntlr INSTANCE:xps_bram_if_cntlr_1 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_bram_if_cntlr_
v1_00_b/data/xps_bram_if_cntlr_v2_1_0.mpd line 78 - tool is overriding
PARAMETER C_SPLB_SMALLEST_MASTER value to 64
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a
/data/bram_block_v2_1_0.mpd line 67 - tool is overriding PARAMETER C_MEMSIZE
value to 0x10000
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a
/data/bram_block_v2_1_0.mpd line 68 - tool is overriding PARAMETER
C_PORT_DWIDTH value to 64
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a
/data/bram_block_v2_1_0.mpd line 70 - tool is overriding PARAMETER C_NUM_WE
value to 8
INFO:EDK:1560 - IPNAME:xps_uartlite INSTANCE:RS232_Uart_1 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_uartlite_v1_01
_a/data/xps_uartlite_v2_1_0.mpd line 71 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_uartlite INSTANCE:RS232_Uart_1 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_uartlite_v1_01
_a/data/xps_uartlite_v2_1_0.mpd line 74 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_8Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 69 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_8Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 72 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_Positions -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 69 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_Positions -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 72 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:Push_Buttons_5Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 69 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:Push_Buttons_5Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 72 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:DIP_Switches_8Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 69 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:DIP_Switches_8Bit -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/d
ata/xps_gpio_v2_1_0.mpd line 72 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_iic INSTANCE:IIC_EEPROM -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_iic_v2_03_a/da
ta/xps_iic_v2_1_0.mpd line 75 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_iic INSTANCE:IIC_EEPROM -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_iic_v2_03_a/da
ta/xps_iic_v2_1_0.mpd line 77 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_ethernetlite INSTANCE:Ethernet_MAC -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_ethernetlite_v
4_00_a/data/xps_ethernetlite_v2_1_0.mpd line 74 - tool is overriding
PARAMETER C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_ethernetlite INSTANCE:Ethernet_MAC -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_ethernetlite_v
4_00_a/data/xps_ethernetlite_v2_1_0.mpd line 77 - tool is overriding
PARAMETER C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_ethernetlite INSTANCE:Ethernet_MAC -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_ethernetlite_v
4_00_a/data/xps_ethernetlite_v2_1_0.mpd line 79 - tool is overriding
PARAMETER C_SPLB_SMALLEST_MASTER value to 64
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a
/data/xps_sysace_v2_1_0.mpd line 70 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a
/data/xps_sysace_v2_1_0.mpd line 72 - tool is overriding PARAMETER
C_SPLB_MID_WIDTH value to 1
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a
/data/xps_sysace_v2_1_0.mpd line 73 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_mch_emc INSTANCE:FLASH -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_mch_emc_v3_01_
a/data/xps_mch_emc_v2_1_0.mpd line 78 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_mch_emc INSTANCE:FLASH -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_mch_emc_v3_01_
a/data/xps_mch_emc_v2_1_0.mpd line 80 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_mch_emc INSTANCE:FLASH -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_mch_emc_v3_01_
a/data/xps_mch_emc_v2_1_0.mpd line 82 - tool is overriding PARAMETER
C_SPLB_SMALLEST_MASTER value to 64
INFO:EDK:1560 - IPNAME:xps_timebase_wdt INSTANCE:xps_timebase_wdt_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_timebase_wdt_v
1_01_a/data/xps_timebase_wdt_v2_1_0.mpd line 71 - tool is overriding
PARAMETER C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_timebase_wdt INSTANCE:xps_timebase_wdt_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_timebase_wdt_v
1_01_a/data/xps_timebase_wdt_v2_1_0.mpd line 74 - tool is overriding
PARAMETER C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_02_a/
data/xps_timer_v2_1_0.mpd line 75 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_02_a/
data/xps_timer_v2_1_0.mpd line 77 - tool is overriding PARAMETER
C_SPLB_MID_WIDTH value to 1
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_02_a/
data/xps_timer_v2_1_0.mpd line 78 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_01_a/d
ata/xps_intc_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_01_a/d
ata/xps_intc_v2_1_0.mpd line 73 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_tft INSTANCE:xps_tft_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_tft_v2_01_a/da
ta/xps_tft_v2_1_0.mpd line 76 - tool is overriding PARAMETER C_MPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_tft INSTANCE:xps_tft_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_tft_v2_01_a/da
ta/xps_tft_v2_1_0.mpd line 80 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_tft INSTANCE:xps_tft_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_tft_v2_01_a/da
ta/xps_tft_v2_1_0.mpd line 83 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:xps_ps2 INSTANCE:xps_ps2_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_ps2_v1_01_b/da
ta/xps_ps2_v2_1_0.mpd line 68 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_ps2 INSTANCE:xps_ps2_0 -
/opt/Xilinx/12.1/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/xps_ps2_v1_01_b/da
ta/xps_ps2_v2_1_0.mpd line 71 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:plbv46_2_wb_enconder INSTANCE:plbv46_2_wb_enconder_0 -
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/pcores/plbv46_2_wb_encond
er_v1_01_a/data/plbv46_2_wb_enconder_v2_1_0.mpd line 26 - tool is overriding
PARAMETER C_SPLB_NUM_MASTERS value to 2
INFO:EDK:1560 - IPNAME:plbv46_2_wb_enconder INSTANCE:plbv46_2_wb_enconder_0 -
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/pcores/plbv46_2_wb_encond
er_v1_01_a/data/plbv46_2_wb_enconder_v2_1_0.mpd line 27 - tool is overriding
PARAMETER C_SPLB_MID_WIDTH value to 1
INFO:EDK:1560 - IPNAME:plbv46_2_wb_enconder INSTANCE:plbv46_2_wb_enconder_0 -
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/pcores/plbv46_2_wb_encond
er_v1_01_a/data/plbv46_2_wb_enconder_v2_1_0.mpd line 31 - tool is overriding
PARAMETER C_SPLB_SMALLEST_MASTER value to 64
Checking platform address map ...
Initializing Memory...
Running Data2Mem with the following command:
data2mem -bm implementation/system_bd -bt implementation/system.bit -bd
bootloops/ppc440_0.elf tag ppc440_0 -o b implementation/download.bit
Memory Initialization completed successfully.
*********************************************
Downloading Bitstream onto the target board
*********************************************
impact -batch etc/download.cmd
Release 12.1 - iMPACT M.53d (lin64)
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
Preference Table
Name Setting
StartupClock Auto_Correction
AutoSignature False
KeepSVF False
ConcurrentMode False
UseHighz False
ConfigOnFailure Stop
UserLevel Novice
MessageLevel Detailed
svfUseTime false
SpiByteSwap Auto_Correction
AutoInfer false
SvfPlayDisplayComments false
AutoDetecting cable. Please wait.
Connecting to cable (Usb Port - USB21).
Checking cable driver.
File version of /opt/Xilinx/12.1/ISE_DS/ISE/bin/lin64/xusbdfwu.hex = 1030.
File version of /usr/share/xusbdfwu.hex = 1030.
Using libusb.
Kernel release = 2.6.33.4-95.fc13.x86_64.
Cable connection failed.
Connecting to cable (Parallel Port - parport0).
Linux release = 2.6.33.4-95.fc13.x86_64.
Cable connection failed.
Connecting to cable (Parallel Port - parport1).
Linux release = 2.6.33.4-95.fc13.x86_64.
Cable connection failed.
Connecting to cable (Parallel Port - parport2).
Linux release = 2.6.33.4-95.fc13.x86_64.
Cable connection failed.
Connecting to cable (Parallel Port - parport3).
Linux release = 2.6.33.4-95.fc13.x86_64.
Cable connection failed.
Cable autodetection failed.
WARNING:iMPACT - Module windrvr6 is not loaded. Please reinstall the cable
drivers. See Answer Record 22648.
WARNING:iMPACT - Module windrvr6 is not loaded. Please reinstall the cable
drivers. See Answer Record 22648.
WARNING:iMPACT - Module windrvr6 is not loaded. Please reinstall the cable
drivers. See Answer Record 22648.
WARNING:iMPACT - Module windrvr6 is not loaded. Please reinstall the cable
drivers. See Answer Record 22648.
make: *** [download] Error 1
Done!
Writing filter settings....
Done writing filter settings to:
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/__xps/system.filters
Done writing Tab View settings to:
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/__xps/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 12.1 Build EDK_MS1.53d
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
Generating Block Diagram to Buffer
/opt/Xilinx/12.1/ISE_DS/EDK/data/xml/xslscripts/ConvertEdwardVersion.xsl
Generated Block Diagram SVG
At Local date and time: Mon Jun 7 09:52:06 2010
make -f system.make download started...
*********************************************
Downloading Bitstream onto the target board
*********************************************
impact -batch etc/download.cmd
Release 12.1 - iMPACT M.53d (lin64)
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
Preference Table
Name Setting
StartupClock Auto_Correction
AutoSignature False
KeepSVF False
ConcurrentMode False
UseHighz False
ConfigOnFailure Stop
UserLevel Novice
MessageLevel Detailed
svfUseTime false
SpiByteSwap Auto_Correction
AutoInfer false
SvfPlayDisplayComments false
AutoDetecting cable. Please wait.
Connecting to cable (Usb Port - USB21).
Checking cable driver.
File version of /opt/Xilinx/12.1/ISE_DS/ISE/bin/lin64/xusbdfwu.hex = 1030.
File version of /usr/share/xusbdfwu.hex = 1030.
Using libusb.
Kernel release = 2.6.33.5-112.fc13.x86_64.
Max current requested during enumeration is 300 mA.
Type = 0x0005.
control tranfer failed.
write (count, cmdBuffer, dataBuffer) failed 20000020.
Cable Type = 3, Revision = 0.
Setting cable speed to 6 MHz.
Cable connection established.
Firmware version = 2300.
File version of /opt/Xilinx/12.1/ISE_DS/ISE/data/xusb_xp2.hex = 2401.
Firmware hex file version = 2401.
Downloading /opt/Xilinx/12.1/ISE_DS/ISE/data/xusb_xp2.hex.
Downloaded firmware version = 2401.
PLD file version = 200Dh.
PLD version = 200Dh.
Type = 0x0005.
ESN option: 000012924FDE01.
Identifying chain contents...
'0': : Manufacturer's ID = Xilinx xc5vfx70t, Version : 6
I
NFO:iMPACT:1777 -
Reading /opt/Xilinx/12.1/ISE_DS/ISE/virtex5/data/xc5vfx70t.bsd...
INFO:iMPACT:501 - '1': Added Device xc5vfx70t successfully.
----------------------------------------------------------------------
----------------------------------------------------------------------
'1': : Manufacturer's ID = Xilinx xccace, Version : 0
I
NFO:iMPACT:1777 -
Reading /opt/Xilinx/12.1/ISE_DS/ISE/acecf/data/xccace.bsd...
I
N
----------------------------------------------------------------------
----------------------------------------------------------------------
FO:iMPACT:501 - '1': Added Device xccace successfully.
'2': : Manufacturer's ID = Xilinx xc95144xl, Version : 5
I
NFO:iMPACT:1777 -
Reading /opt/Xilinx/12.1/ISE_DS/ISE/xc9500xl/data/xc95144xl.bsd...
I
N
----------------------------------------------------------------------
----------------------------------------------------------------------
FO:iMPACT:501 - '1': Added Device xc95144xl successfully.
'3': : Manufacturer's ID = Xilinx xcf32p, Version : 15
INFO:iMPACT:1777 -
Reading /opt/Xilinx/12.1/ISE_DS/ISE/xcfp/data/xcf32p.bsd...
I
----------------------------------------------------------------------
----------------------------------------------------------------------
NFO:iMPACT:501 - '1': Added Device xcf32p successfully.
'4': : Manufacturer's ID = Xilinx xcf32p, Version : 15
INFO:iMPACT:501 - '1': Added
----------------------------------------------------------------------
----------------------------------------------------------------------
Device xcf32p successfully.
done.
Elapsed time = 17 sec.
Elapsed time = 0 sec.
'5': Loading file 'implementation/download.bit' ...
done.
UserID read from the bitstream file = 0xFFFFFFFF.
----------------------------------------------------------------------
----------------------------------------------------------------------
INFO:iMPACT:501 - '5': Added Device xc5vfx70t successfully.
----------------------------------------------------------------------
Maximum TCK operating frequency for this device chain: 10000000.
Validating chain...
Boundary-scan chain validated successfully.
5: Device Temperature: Current Reading: 33.64 C, Min. Reading: 26.26 C, Max.
Reading: 33.64 C
5: VCCINT Supply: Current Reading: 0.999 V, Min. Reading: 0.999 V, Max.
Reading: 1.002 V
5: VCCAUX Supply: Current Reading: 2.490 V, Min. Reading: 2.487 V, Max.
Reading: 2.493 V
'5': Programming device...
Match_cycle = 2.
LCK_cycle = NoWait.
LCK cycle: NoWait
done.
Match_cycle = 2.
LCK_cycle = NoWait.
LCK cycle: NoWait
INFO:iMPACT:2219 - Status register values:
INFO:iMPACT - 0011 1111 1011 1110 0000 1011 1000 0000
INFO:iMPACT:579 - '5': Completed downloading bit file to device.
INFO:iMPACT:188 - '5': Programming completed successfully.
I
'5': Programmed successfully.
NFO:iMPACT - '5': Checking done pin....done.
Elapsed time = 22 sec.
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
----------------------------------------------------------------------
Done!
xterm -e xmd -xmp system.xmp -opt etc/xmd_ppc440_0.opt&
At Local date and time: Mon Jun 7 09:55:41 2010
make -f system.make program started...
powerpc-eabi-gcc -O2 TestApp_Memory_ppc440_0/src/TestApp_Memory.c -o TestApp_Memory_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Memory_ppc440_0/src/TestApp_Memory_LinkScr.ld -g -I./ppc440_0/include/ -L./ppc440_0/lib/ \
powerpc-eabi-size TestApp_Memory_ppc440_0/executable.elf
text data bss dec hex filename
5758 316 6192 12266 2fea TestApp_Memory_ppc440_0/executable.elf
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_polled_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_intr_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_example_util.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
powerpc-eabi-size TestApp_Peripheral_ppc440_0/executable.elf
text data bss dec hex filename
41270 580 20208 62058 f26a TestApp_Peripheral_ppc440_0/executable.elf
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0_tft/src/xps-tft-colorbar.c -o TestApp_Peripheral_ppc440_0_tft/executable.elf \
-mcpu=440 -g -I./ppc440_0/include/ -L./ppc440_0/lib/ \
powerpc-eabi-size TestApp_Peripheral_ppc440_0_tft/executable.elf
text data bss dec hex filename
12434 1492 8276 22202 56ba TestApp_Peripheral_ppc440_0_tft/executable.elf
Sw App TestApp_Peripheral_wb_encoder: Neither C-sources specified, nor marked for BRAM initialization. Not compiling elf file
Done!
Writing filter settings....
Done writing filter settings to:
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/__xps/system.filters
Done writing Tab View settings to:
/home/aalonso/workspace/ppc44x/xilinx-ml507-updated/__xps/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 12.1 Build EDK_MS1.53d
Copyright (c) 1995-2010 Xilinx, Inc. All rights reserved.
Generating Block Diagram to Buffer
/opt/Xilinx/12.1/ISE_DS/EDK/data/xml/xslscripts/ConvertEdwardVersion.xsl
Generated Block Diagram SVG
At Local date and time: Tue Jun 8 00:34:25 2010
make -f system.make TestApp_Peripheral_ppc440_0_programclean started...
rm -f TestApp_Peripheral_ppc440_0/executable.elf
Done!
At Local date and time: Tue Jun 8 00:34:37 2010
make -f system.make TestApp_Peripheral_ppc440_0_program started...
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_polled_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_intr_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_example_util.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:61:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
In file included from TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:61:
TestApp_Peripheral_ppc440_0/src/wbEncoder.h:81: error: ‘XPAR_PLBV46_2_WB_ENCONDER_0_INTERRUPT_PRESENT’ undeclared here (not in a function)
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c: In function ‘main’:
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: ‘WB_ENCODER_DEVICE_ID’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: for each function it appears in.)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder.h:81: error: ‘XPAR_PLBV46_2_WB_ENCONDER_0_INTERRUPT_PRESENT’ undeclared here (not in a function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: wrong type argument to unary plus
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: conversion to non-scalar type requested
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘PLBV46_2_WB_ENCONDER_INTR_DIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: wrong type argument to unary plus
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: conversion to non-scalar type requested
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_TERR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_DPTO_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: invalid operands to binary |
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_IPIR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: invalid operands to binary |
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: wrong type argument to unary plus
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: conversion to non-scalar type requested
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘INTR_GIE_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: wrong type argument to unary plus
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: conversion to non-scalar type requested
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:78:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:77: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:77: warning: assignment makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:79: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:79: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:93:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:92: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:92: warning: assignment makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:94: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:94: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:108:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptClear’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:107: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:107: warning: assignment makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:109: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPISR_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:109: warning: passing argument 1 of ‘Xil_Out32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:122:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetEnabled’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:121: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:121: warning: return makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:132:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetStatus’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:131: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:131: warning: return makes integer from pointer without a cast
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:26:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:26:
TestApp_Peripheral_ppc440_0/src/wbEncoder.h:81: error: ‘XPAR_PLBV46_2_WB_ENCONDER_0_INTERRUPT_PRESENT’ undeclared here (not in a function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderExample’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: warning: passing argument 1 of ‘wbEncoder_Initialize’ from incompatible pointer type
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 1 of ‘wbEncoder_IntSetup’ from incompatible pointer type
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 2 of ‘wbEncoder_IntSetup’ makes pointer from integer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 3 of ‘wbEncoder_IntSetup’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderIntHandler’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: ‘PLBV46_2_WB_ENCONDER_SLV_REG0_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: warning: passing argument 1 of ‘Xil_In32’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: too many arguments to function ‘Xil_In32’
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoder_IntSetup’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:180: error: ‘XST_SUCESS’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:180: warning: comparison between pointer and integer
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:185: error: ‘instPrt’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:187: warning: comparison between pointer and integer
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:199: error: ‘XIL_EXCEPTION_ID_INT’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: ‘Xil_ExceptionHandler’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: expected ‘)’ before ‘XIntc_InterruptHandler’
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:208: warning: comparison between pointer and integer
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder.h:81: error: ‘XPAR_PLBV46_2_WB_ENCONDER_0_INTERRUPT_PRESENT’ undeclared here (not in a function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_CfgInitialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: ‘wbEncoder_Config’ has no member named ‘readData’
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_LookupConfig’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:61: error: ‘XPAR_PLBV46_2_WB_ENCODER_NUM_INSTANCES’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:61: warning: comparison between pointer and integer
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:62: error: ‘deviceId’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:62: warning: comparison between pointer and integer
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:63: error: ‘configPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_Initialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:79: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:81: error: ‘configPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:83: error: ‘wbEncoder_Config’ has no member named ‘isReady’
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:84: error: ‘wbEncoder_Config’ has no member named ‘readData’
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:90: warning: passing argument 1 of ‘wbEncoder_CfgInitialize’ from incompatible pointer type
make: *** [TestApp_Peripheral_ppc440_0/executable.elf] Error 1
Done!
At Local date and time: Tue Jun 8 00:38:13 2010
make -f system.make TestApp_Peripheral_ppc440_0_tft_program started...
make: Nothing to be done for `TestApp_Peripheral_ppc440_0_tft_program'.
Done!
At Local date and time: Tue Jun 8 00:38:27 2010
make -f system.make TestApp_Peripheral_ppc440_0_program started...
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_polled_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_intr_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_example_util.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:61:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c: In function ‘main’:
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: ‘WB_ENCODER_DEVICE_ID’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:343: error: for each function it appears in.)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘PLBV46_2_WB_ENCONDER_INTR_DIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_TERR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_DPTO_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_IPIR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘INTR_GIE_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:78:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:77: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:79: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:93:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:92: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:94: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:108:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptClear’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:107: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:109: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPISR_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:122:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetEnabled’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:121: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:132:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetStatus’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:131: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:26:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderExample’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 2 of ‘wbEncoder_IntSetup’ makes pointer from integer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 3 of ‘wbEncoder_IntSetup’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderIntHandler’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: ‘PLBV46_2_WB_ENCONDER_SLV_REG0_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: too many arguments to function ‘Xil_In32’
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoder_IntSetup’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:180: error: ‘XST_SUCESS’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:185: error: ‘instPrt’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:199: error: ‘XIL_EXCEPTION_ID_INT’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: ‘Xil_ExceptionHandler’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: expected ‘)’ before ‘XIntc_InterruptHandler’
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_CfgInitialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_LookupConfig’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:61: error: ‘XPAR_PLBV46_2_WB_ENCODER_NUM_INSTANCES’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:62: error: ‘deviceId’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:63: error: ‘configPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_Initialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:79: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:81: error: ‘configPtr’ undeclared (first use in this function)
make: *** [TestApp_Peripheral_ppc440_0/executable.elf] Error 1
Done!
At Local date and time: Tue Jun 8 00:40:05 2010
make -f system.make TestApp_Peripheral_ppc440_0_programclean started...
rm -f TestApp_Peripheral_ppc440_0/executable.elf
Done!
At Local date and time: Tue Jun 8 00:40:09 2010
make -f system.make TestApp_Peripheral_ppc440_0_program started...
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_polled_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_intr_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_example_util.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:61:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c: In function ‘main’:
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: ‘WB_ENCODER_DEVICE_ID’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: for each function it appears in.)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘PLBV46_2_WB_ENCONDER_INTR_DIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_TERR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_DPTO_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_IPIR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘INTR_GIE_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:78:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:77: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:79: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:93:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:92: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:94: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:108:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptClear’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:107: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:109: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPISR_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:122:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetEnabled’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:121: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:132:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetStatus’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:131: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:26:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderExample’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 2 of ‘wbEncoder_IntSetup’ makes pointer from integer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:80: warning: passing argument 3 of ‘wbEncoder_IntSetup’ makes integer from pointer without a cast
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderIntHandler’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: ‘PLBV46_2_WB_ENCONDER_SLV_REG0_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:160: error: too many arguments to function ‘Xil_In32’
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoder_IntSetup’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:180: error: ‘XST_SUCESS’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:185: error: ‘instPrt’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:199: error: ‘XIL_EXCEPTION_ID_INT’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: ‘Xil_ExceptionHandler’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:200: error: expected ‘)’ before ‘XIntc_InterruptHandler’
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:45: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_CfgInitialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:46: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_LookupConfig’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:61: error: ‘XPAR_PLBV46_2_WB_ENCODER_NUM_INSTANCES’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:62: error: ‘deviceId’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:63: error: ‘configPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c: In function ‘wbEncoder_Initialize’:
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:79: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder.c:81: error: ‘configPtr’ undeclared (first use in this function)
make: *** [TestApp_Peripheral_ppc440_0/executable.elf] Error 1
Done!
At Local date and time: Tue Jun 8 00:41:49 2010
make -f system.make TestApp_Peripheral_ppc440_0_program started...
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_polled_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_intr_example.c TestApp_Peripheral_ppc440_0/src/xemaclite_example_util.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c TestApp_Peripheral_ppc440_0/src/wbEncoder.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:61:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:52: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c: In function ‘main’:
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: ‘WB_ENCODER_DEVICE_ID’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c:344: error: for each function it appears in.)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:23:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:52: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: (Each undeclared identifier is reported only once
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:44: error: for each function it appears in.)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘PLBV46_2_WB_ENCONDER_INTR_DIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_TERR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_DPTO_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:48: error: ‘INTR_IPIR_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:52: error: ‘INTR_GIE_MASK’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGlobalDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: expected ‘)’ before ‘->’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:64: error: ‘PLBV46_2_WB_ENCONDER_INTR_DGIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:78:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptEnable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:77: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:79: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:93:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptDisable’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:92: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:94: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPIER_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:108:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptClear’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:107: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:109: error: ‘PLBV46_2_WB_ENCONDER_INTR_IPISR_OFFSET’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:122:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetEnabled’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:121: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:132:47: error: macro "wbEncoder_ReadReg" requires 3 arguments, but only 2 given
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c: In function ‘wbEncoder_InterruptGetStatus’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.c:131: error: ‘wbEncoder_ReadReg’ undeclared (first use in this function)
In file included from TestApp_Peripheral_ppc440_0/src/wbEncoder.h:29,
from TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:26:
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:46: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:47: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:48: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:49: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:50: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:51: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_intc.h:52: error: expected ‘)’ before ‘*’ token
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c: In function ‘wbEncoderExample’:
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: ‘instPtr’ undeclared (first use in this function)
TestApp_Peripheral_ppc440_0/src/wbEncoder_tapp_example.c:74: error: (Each undeclared identifier is reported only once