-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathra_cfg.txt
1214 lines (1159 loc) · 71 KB
/
ra_cfg.txt
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
FSP Configuration
Board "Custom User Board (Any Device)"
R7FA6M3AH3CFB
part_number: R7FA6M3AH3CFB
rom_size_bytes: 2097152
ram_size_bytes: 655360
data_flash_size_bytes: 65536
package_style: LQFP
package_pins: 144
RA6M3
series: 6
RA6M3 Family
OFS0 register settings: Independent WDT: Start Mode: IWDT is Disabled
OFS0 register settings: Independent WDT: Timeout Period: 2048 cycles
OFS0 register settings: Independent WDT: Dedicated Clock Frequency Divisor: 128
OFS0 register settings: Independent WDT: Window End Position: 0% (no window end position)
OFS0 register settings: Independent WDT: Window Start Position: 100% (no window start position)
OFS0 register settings: Independent WDT: Reset Interrupt Request Select: Reset is enabled
OFS0 register settings: Independent WDT: Stop Control: Stop counting when in Sleep, Snooze mode, or Software Standby
OFS0 register settings: WDT: Start Mode Select: Stop WDT after a reset (register-start mode)
OFS0 register settings: WDT: Timeout Period: 16384 cycles
OFS0 register settings: WDT: Clock Frequency Division Ratio: 128
OFS0 register settings: WDT: Window End Position: 0% (no window end position)
OFS0 register settings: WDT: Window Start Position: 100% (no window start position)
OFS0 register settings: WDT: Reset Interrupt Request: Reset
OFS0 register settings: WDT: Stop Control: Stop counting when entering Sleep mode
OFS1 register settings: Voltage Detection 0 Circuit Start: Voltage monitor 0 reset is disabled after reset
OFS1 register settings: Voltage Detection 0 Level: 2.80 V
OFS1 register settings: HOCO Oscillation Enable: HOCO oscillation is disabled after reset
MPU: Enable or disable PC Region 0: Disabled
MPU: PC0 Start: 0xFFFFFFFC
MPU: PC0 End: 0xFFFFFFFF
MPU: Enable or disable PC Region 1: Disabled
MPU: PC1 Start: 0xFFFFFFFC
MPU: PC1 End: 0xFFFFFFFF
MPU: Enable or disable Memory Region 0: Disabled
MPU: Memory Region 0 Start: 0x00FFFFFC
MPU: Memory Region 0 End: 0x00FFFFFF
MPU: Enable or disable Memory Region 1: Disabled
MPU: Memory Region 1 Start: 0x200FFFFC
MPU: Memory Region 1 End: 0x200FFFFF
MPU: Enable or disable Memory Region 2: Disabled
MPU: Memory Region 2 Start: 0x407FFFFC
MPU: Memory Region 2 End: 0x407FFFFF
MPU: Enable or disable Memory Region 3: Disabled
MPU: Memory Region 3 Start: 0x400DFFFC
MPU: Memory Region 3 End: 0x400DFFFF
Clocks: HOCO FLL Function: Disabled
Main Oscillator Wait Time: 8163 cycles
ID Code Mode: Unlocked (Ignore ID)
ID Code (32 Hex Characters): FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
RA Common
Main stack size (bytes): 0x400
Heap size (bytes): 0
MCU Vcc (mV): 3300
Parameter checking: Disabled
Assert Failures: Return FSP_ERR_ASSERTION
Error Log: No Error Log
Clock Registers not Reset Values during Startup: Disabled
Main Oscillator Populated: Populated
PFS Protect: Enabled
C Runtime Initialization : Enabled
Early BSP Initialization : Disabled
Main Oscillator Clock Source: Crystal or Resonator
Subclock Populated: Populated
Subclock Drive (Drive capacitance availability varies by MCU): Standard/Normal mode
Subclock Stabilization Time (ms): 1000
Clocks
XTAL 24000000Hz
PLL Src: XTAL
HOCO 20MHz
PLL Div /2
PLL Mul x20.0
Clock Src: PLL
ICLK Div /2
PCLKA Div /2
PCLKB Div /4
PCLKC Div /4
PCLKD Div /2
SDCLK Enabled
BCLK Div /2
EBCLK Div /2
UCLK Div /5
FCLK Div /4
CLKOUT Disabled
CLKOUT Div /1
Pin Configurations
R7FA6M3AH3CFB.pincfg -> g_bsp_pin_cfg
AVCC0 127 ADC_AVCC0 - - - - - - - - IO "Read only" -
AVSS0 128 ADC_AVSS0 - - - - - - - - IO "Read only" -
P000 140 - - - - Disabled - - "ADC0: AN00; CMP0: IVCMP2; IRQ0: IRQ06" - None - -
P001 139 - - - - Disabled - - "ADC0: AN01; CMP0: IVCMP2; IRQ0: IRQ07" - None - -
P002 138 - - - - Disabled - - "ADC0: AN02; CMP0: IVCMP2; IRQ0: IRQ08" - None - -
P003 137 - - - - Disabled - - "ADC0: AN07; ADC0: PGAVSS0" - None - -
P004 136 IRQ0_IRQ09 - - IRQ9-DS "IRQ mode" - - "ADC1: AN00; CMP0: IVCMP2; IRQ0: IRQ09" - IO - -
P005 135 IRQ0_IRQ10 - - IRQ10-DS "IRQ mode" - - "ADC1: AN01; CMP0: IVCMP2; IRQ0: IRQ10" - IO - -
P006 134 IRQ0_IRQ11 - - IRQ11-DS "IRQ mode" - - "ADC1: AN02; CMP0: IVCMP2; IRQ0: IRQ11" - IO - -
P007 133 GPIO - - - "Input mode" - - "ADC1: AN07; ADC1: PGAVSS0" - IO - -
P008 132 - - - - Disabled - - "ADC0: AN03; IRQ0: IRQ12" - None - -
P009 131 - - - - Disabled - - "ADC0: AN04; IRQ0: IRQ13" - None - -
P014 124 - - - - Disabled - - "ADC0: AN05; ADC1: AN05; CMP0: IVREF3; DAC120: DA" - None - -
P015 123 IRQ0_IRQ13 - - IRQ13 "IRQ mode" - None "ADC0: AN06; ADC1: AN06; CMP0: IVCMP1; DAC121: DA; IRQ0: IRQ13" - IO - -
P100 108 GPT5_GTIOCB - Low None "Peripheral mode" CMOS None "AGT0: AGTIO; BUS0: D0_DQ0; GLCDC0: LCD_EXTCLK; GPT5: GTIOCB; IIC1: SCL; IRQ0: IRQ02; KINT0: KRM0; POEG0: GTETRG; SCI0: RXD_MISO; SCI0: SCL; SCI1: SCK; SPI0: MISO" - IO - -
P101 107 GLCDC0_LCD_CLK - High None "Peripheral mode" CMOS None "AGT0: AGTEE; BUS0: D1_DQ1; GLCDC0: LCD_CLK; GPT5: GTIOCA; IIC1: SDA; IRQ0: IRQ01; KINT0: KRM1; POEG1: GTETRG; SCI0: SDA; SCI0: TXD_MOSI; SCI1: CTS_RTS_SS; SPI0: MOSI" - IO - -
P102 106 GLCDC0_LCD_TCON0 - High - "Peripheral mode" CMOS None "ADC0: ADTRG; AGT0: AGTO; BUS0: D2_DQ2; CAN0: CRX; GLCDC0: LCD_TCON0; GPT2: GTIOCB; KINT0: KRM2; OPS0: GTOWLO; SCI0: SCK; SPI0: RSPCK" - IO - -
P103 105 GLCDC0_LCD_TCON1 - High - "Peripheral mode" CMOS None "BUS0: D3_DQ3; CAN0: CTX; GLCDC0: LCD_TCON1; GPT2: GTIOCA; KINT0: KRM3; OPS0: GTOWUP; SCI0: CTS_RTS_SS; SPI0: SSL0" - IO - -
P104 104 GLCDC0_LCD_TCON2 - High None "Peripheral mode" CMOS None "BUS0: D4_DQ4; GLCDC0: LCD_TCON2; GPT1: GTIOCB; IRQ0: IRQ01; KINT0: KRM4; POEG1: GTETRG; SCI8: RXD_MISO; SCI8: SCL; SPI0: SSL1" - IO - -
P105 103 - - - - Disabled - - "BUS0: D5_DQ5; GLCDC0: LCD_TCON3; GPT1: GTIOCA; IRQ0: IRQ00; KINT0: KRM5; POEG0: GTETRG; SCI8: SDA; SCI8: TXD_MOSI; SPI0: SSL2" - None - -
P106 102 GLCDC0_LCD_DATA00 - High - "Peripheral mode" CMOS None "AGT0: AGTOB; BUS0: D6_DQ6; GLCDC0: LCD_DATA00; GPT8: GTIOCB; KINT0: KRM6; SCI8: SCK; SPI0: SSL3" - IO - -
P107 101 GLCDC0_LCD_DATA01 - High - "Peripheral mode" CMOS None "AGT0: AGTOA; BUS0: D7_DQ7; GLCDC0: LCD_DATA01; GPT8: GTIOCA; KINT0: KRM7; SCI8: CTS_RTS_SS" - IO - -
P108 73 DEBUG0_SWDIO - Low - "Peripheral mode" CMOS None "DEBUG0: SWDIO; DEBUG0: TMS; GPT0: GTIOCB; OPS0: GTOULO; SCI9: CTS_RTS_SS; SPI1: SSL0" - IO - -
P109 74 SCI9_TXD_MOSI - Low - "Peripheral mode" CMOS None "CAN1: CTX; CGC0: CLKOUT; DEBUG0: SWO; DEBUG0: TDO; GPT1: GTIOCA; OPS0: GTOVUP; SCI9: SDA; SCI9: TXD_MOSI; SPI1: MOSI" - IO - -
P110 75 SCI9_RXD_MISO - Low None "Peripheral mode" CMOS None "CAN1: CRX; CMP0: VCOUT; DEBUG0: TDI; GPT1: GTIOCB; IRQ0: IRQ03; OPS0: GTOVLO; SCI2: CTS_RTS_SS; SCI9: RXD_MISO; SCI9: SCL; SPI1: MISO" - IO - -
P111 76 GLCDC0_LCD_DATA12 - High None "Peripheral mode" CMOS None "BUS0: A05; GLCDC0: LCD_DATA12; GPT3: GTIOCA; IRQ0: IRQ04; SCI2: SCK; SCI9: SCK; SPI1: RSPCK" - IO - -
P112 77 GLCDC0_LCD_DATA11 - High - "Peripheral mode" CMOS None "BUS0: A04; GLCDC0: LCD_DATA11; GPT3: GTIOCB; SCI1: SCK; SCI2: SDA; SCI2: TXD_MOSI; SPI1: SSL0; SSI0: SSISCK" - IO - -
P113 78 GLCDC0_LCD_DATA10 - High - "Peripheral mode" CMOS None "BUS0: A03; GLCDC0: LCD_DATA10; GPT2: GTIOCA; SCI2: RXD_MISO; SCI2: SCL; SSI0: SSIWS" - IO - -
P114 79 GLCDC0_LCD_DATA09 - High - "Peripheral mode" CMOS None "BUS0: A02; GLCDC0: LCD_DATA09; GPT2: GTIOCB; SSI0: SSIRXD" - IO - -
P115 80 GLCDC0_LCD_DATA08 - High - "Peripheral mode" CMOS None "BUS0: A01; GLCDC0: LCD_DATA08; GPT4: GTIOCA; SSI0: SSITXD" - IO - -
P200 57 - - - - Disabled - - "IRQ0: NMI" - None - -
P201 56 - - - - Disabled - - - - None - -
P202 46 - - - - Disabled - - "BUS0: WR1_BC1; CAN0: CRX; ETHERC0: ERXD2; GLCDC0: LCD_TCON3; GPT5: GTIOCB; IRQ0: IRQ03; SCI2: SCK; SCI9: RXD_MISO; SCI9: SCL; SDHI0: DAT6; SPI1: MISO" - None - -
P203 45 - - - - Disabled - - "BUS0: A19; CAN0: CTX; CTSU0: TSCAP; ETHERC0: COL; GPT5: GTIOCA; IRQ0: IRQ02; SCI2: CTS_RTS_SS; SCI9: SDA; SCI9: TXD_MOSI; SDHI0: DAT5; SPI1: MOSI" - None - -
P204 44 - - - - Disabled - - "AGT1: AGTIO; BUS0: A18; CAC0: CACREF; CTSU0: TS00; ETHERC0: RX_DV; GPT4: GTIOCB; IIC0: SCL; OPS0: GTIW; SCI4: SCK; SCI9: SCK; SDHI0: DAT4; SPI1: RSPCK; SSI1: SSISCK; USBFS0: OVRCURB" - None - -
P205 43 SCI4_TXD_MOSI - Low None "Peripheral mode" CMOS None "AGT1: AGTO; BUS0: A16; CGC0: CLKOUT; CTSU0: TSCAP; ETHERC0: WOL; ETHERC0: WOL; GPT4: GTIOCA; IIC1: SCL; IRQ0: IRQ01; OPS0: GTIV; SCI4: SDA; SCI4: TXD_MOSI; SCI9: CTS_RTS_SS; SDHI0: DAT3; SPI1: SSL0; SSI1: SSIWS; USBFS0: OVRCURA" - IO - -
P206 42 SCI4_RXD_MISO - Low None "Peripheral mode" CMOS None "BUS0: WAIT; CTSU0: TS01; ETHERC0: LINKSTA; ETHERC0: LINKSTA; IIC1: SDA; IRQ0: IRQ00; OPS0: GTIU; SCI4: RXD_MISO; SCI4: SCL; SDHI0: DAT2; SPI1: SSL1; SSI1: SSIDATA; USBFS0: VBUSEN" - IO - -
P207 41 - - - - Disabled - - "BUS0: A17; CTSU0: TS02; GLCDC0: LCD_DATA23; QSPI0: QSSL; SPI1: SSL2" - None - -
P208 54 - - - - Disabled - - "ETHERC0: LINKSTA; ETHERC0: LINKSTA; GLCDC0: LCD_DATA18; OPS0: GTOVLO; QSPI0: QIO3; SDHI0: DAT0; TRACE0: TDATA3" - None - -
P209 53 - - - - Disabled - - "ETHERC0: EXOUT; ETHERC0: EXOUT; GLCDC0: LCD_DATA19; OPS0: GTOVUP; QSPI0: QIO2; SDHI0: WP; TRACE0: TDATA2" - None - -
P210 52 - - - - Disabled - - "ETHERC0: WOL; ETHERC0: WOL; GLCDC0: LCD_DATA20; OPS0: GTIW; QSPI0: QIO1; SDHI0: CD; TRACE0: TDATA1" - None - -
P211 51 - - - - Disabled - - "ETHERC0: MDIO; ETHERC0: MDIO; GLCDC0: LCD_DATA21; OPS0: GTIV; QSPI0: QIO0; SDHI0: CMD; TRACE0: TDATA0" - None - -
P212 20 CGC0_EXTAL - Low None "Peripheral mode" CMOS None "AGT1: AGTEE; CGC0: EXTAL; GPT0: GTIOCB; IRQ0: IRQ03; POEG3: GTETRG; SCI1: RXD_MISO; SCI1: SCL" - IO - -
P213 19 CGC0_XTAL - Low None "Peripheral mode" CMOS None "ADC1: ADTRG; CGC0: XTAL; GPT0: GTIOCA; IRQ0: IRQ02; POEG2: GTETRG; SCI1: SDA; SCI1: TXD_MOSI" - IO - -
P214 50 - - - - Disabled - - "ETHERC0: MDC; ETHERC0: MDC; GLCDC0: LCD_DATA22; OPS0: GTIU; QSPI0: QSPCLK; SDHI0: CLK; TRACE0: TCLK" - None - -
P300 72 DEBUG0_SWCLK - Low - "Peripheral mode" CMOS None "DEBUG0: SWCLK; DEBUG0: TCK; GPT0: GTIOCA; OPS0: GTOUUP; SPI1: SSL1" - IO - -
P301 71 GLCDC0_LCD_DATA13 - High None "Peripheral mode" CMOS None "AGT0: AGTIO; BUS0: A06; GLCDC0: LCD_DATA13; GPT4: GTIOCB; IRQ0: IRQ06; OPS0: GTOULO; SCI2: RXD_MISO; SCI2: SCL; SCI9: CTS_RTS_SS; SPI1: SSL2" - IO - -
P302 70 GLCDC0_LCD_DATA14 - High None "Peripheral mode" CMOS None "BUS0: A07; GLCDC0: LCD_DATA14; GPT4: GTIOCA; IRQ0: IRQ05; OPS0: GTOUUP; SCI2: SDA; SCI2: TXD_MOSI; SPI1: SSL3" - IO - -
P303 69 GLCDC0_LCD_DATA15 - High - "Peripheral mode" CMOS None "BUS0: A08; GLCDC0: LCD_DATA15; GPT7: GTIOCB" - IO - -
P304 66 SCI6_RXD_MISO - Low None "Peripheral mode" CMOS None "BUS0: A09; GLCDC0: LCD_DATA16; GPT7: GTIOCA; IRQ0: IRQ09; OPS0: GTOWLO; SCI6: RXD_MISO; SCI6: SCL" - IO - -
P305 65 SCI6_TXD_MOSI - Low None "Peripheral mode" CMOS None "BUS0: A10; GLCDC0: LCD_DATA17; IRQ0: IRQ08; OPS0: GTOWUP; QSPI0: QSPCLK; SCI6: SDA; SCI6: TXD_MOSI" - IO - -
P306 64 SCI6_SCK - Low - "Peripheral mode" CMOS None "BUS0: A11; GLCDC0: LCD_DATA18; OPS0: GTOULO; QSPI0: QSSL; SCI6: SCK" - IO - -
P307 63 - - - - Disabled - - "BUS0: A12; GLCDC0: LCD_DATA19; OPS0: GTOUUP; QSPI0: QIO0; SCI6: CTS_RTS_SS" - None - -
P308 62 - - - - Disabled - - "BUS0: A13; GLCDC0: LCD_DATA20; QSPI0: QIO1" - None - -
P309 61 SCI3_RXD_MISO - Low - "Peripheral mode" CMOS None "BUS0: A14; GLCDC0: LCD_DATA21; QSPI0: QIO2; SCI3: RXD_MISO; SCI3: SCL" - IO - -
P310 60 SCI3_TXD_MOSI - Low - "Peripheral mode" CMOS None "AGT1: AGTEE; BUS0: A15; GLCDC0: LCD_DATA22; QSPI0: QIO3; SCI3: SDA; SCI3: TXD_MOSI" - IO - -
P311 59 SCI3_SCK - Low - "Peripheral mode" CMOS None "AGT1: AGTOB; BUS0: CS2_RAS; GLCDC0: LCD_DATA23; SCI3: SCK" - IO - -
P312 58 - - - - Disabled - - "AGT1: AGTOA; BUS0: CS3_CAS; SCI3: CTS_RTS_SS" - None - -
P313 47 - - - - Disabled - - "BUS0: A20; ETHERC0: ERXD3; GLCDC0: LCD_TCON2; SDHI0: DAT7" - None - -
P400 1 - - - - Disabled - - "ADC1: ADTRG; AGT1: AGTIO; ETHERC0: WOL; ETHERC0: WOL; GPT6: GTIOCA; IIC0: SCL; IRQ0: IRQ00; SCI4: SCK; SCI7: SCK; SSI: AUDIO_CLK" - None - -
P401 2 ETHERC0_RMII_MDC - High None "Peripheral mode" CMOS None "CAN0: CTX; ETHERC0: MDC; ETHERC0: MDC; GPT6: GTIOCB; IIC0: SDA; IRQ0: IRQ05; POEG0: GTETRG; SCI4: CTS_RTS_SS; SCI7: SDA; SCI7: TXD_MOSI" - IO - -
P402 3 ETHERC0_RMII_MDIO - High None "Peripheral mode" CMOS None "AGT0: AGTIO; AGT1: AGTIO; CAC0: CACREF; CAN0: CRX; ETHERC0: MDIO; ETHERC0: MDIO; IRQ0: IRQ04; PDC0: VSYNC; RTC0: RTCIC0; SCI7: RXD_MISO; SCI7: SCL; SSI: AUDIO_CLK" - IO - -
P403 4 SSI0_SSISCK - Low - "Peripheral mode" CMOS None "AGT0: AGTIO; AGT1: AGTIO; ETHERC0: LINKSTA; ETHERC0: LINKSTA; GPT3: GTIOCA; PDC0: PIXD7; RTC0: RTCIC1; SCI7: CTS_RTS_SS; SDHI1: DAT7; SSI0: SSISCK" - IO - -
P404 5 SSI0_SSIWS - Low - "Peripheral mode" CMOS None "ETHERC0: EXOUT; ETHERC0: EXOUT; GPT3: GTIOCB; PDC0: PIXD6; RTC0: RTCIC2; SDHI1: DAT6; SSI0: SSIWS" - IO - -
P405 6 - - - - Disabled - - "ETHERC0: TX_EN; ETHERC0: TXD_EN; GPT1: GTIOCA; PDC0: PIXD5; SDHI1: DAT5; SSI0: SSITXD" - None - -
P406 7 SSI0_SSIRXD - Low - "Peripheral mode" CMOS None "ETHERC0: RX_ER; ETHERC0: TXD1; GPT1: GTIOCB; PDC0: PIXD4; SDHI1: DAT4; SPI1: SSL3; SSI0: SSIRXD" - IO - -
P407 36 - - - - Disabled - - "ADC0: ADTRG; AGT0: AGTIO; CTSU0: TS03; ETHERC0: EXOUT; ETHERC0: EXOUT; IIC0: SDA; RTC0: RTCOUT; SCI4: CTS_RTS_SS; SPI1: SSL3; USBFS0: VBUS" - None - -
P408 35 ETHERC0_RMII_CRS_DV - High None "Peripheral mode" CMOS None "CTSU0: TS04; ETHERC0: CRS; ETHERC0: CRS_DV; GPT10: GTIOCB; IIC0: SCL; IRQ0: IRQ07; OPS0: GTOWLO; PDC0: PIXCLK; SCI3: RXD_MISO; SCI3: SCL; USBFS0: ID" - IO - -
P409 34 ETHERC0_RMII_RX_ER - High None "Peripheral mode" CMOS None "CTSU0: TS05; ETHERC0: RX_CLK; ETHERC0: RX_ER; GPT10: GTIOCA; IRQ0: IRQ06; OPS0: GTOWUP; PDC0: HSYNC; SCI3: SDA; SCI3: TXD_MOSI; USBFS0: EXICEN" - IO - -
P410 33 ETHERC0_RMII_RXD1 - High None "Peripheral mode" CMOS None "AGT1: AGTOB; CTSU0: TS06; ETHERC0: ERXD0; ETHERC0: RXD1; GPT9: GTIOCB; IRQ0: IRQ05; OPS0: GTOVLO; PDC0: PIXD0; SCI0: RXD_MISO; SCI0: SCL; SCI3: SCK; SDHI0: DAT1; SPI0: MISO" - IO - -
P411 32 ETHERC0_RMII_RXD0 - High None "Peripheral mode" CMOS None "AGT1: AGTOA; CTSU0: TS07; ETHERC0: ERXD1; ETHERC0: RXD0; GPT9: GTIOCA; IRQ0: IRQ04; OPS0: GTOVUP; PDC0: PIXD1; SCI0: SDA; SCI0: TXD_MOSI; SCI3: CTS_RTS_SS; SDHI0: DAT0; SPI0: MOSI" - IO - -
P412 31 ETHERC0_RMII_REF50CK - High - "Peripheral mode" CMOS None "AGT1: AGTEE; CTSU0: TS08; ETHERC0: ETXD0; ETHERC0: REF50CK; OPS0: GTOULO; PDC0: PIXD2; SCI0: SCK; SDHI0: CMD; SPI0: RSPCK" - IO - -
P413 30 ETHERC0_RMII_TXD0 - High - "Peripheral mode" CMOS None "CTSU0: TS09; ETHERC0: ETXD1; ETHERC0: TXD0; OPS0: GTOUUP; PDC0: PIXD3; SCI0: CTS_RTS_SS; SDHI0: CLK; SPI0: SSL0" - IO - -
P414 29 ETHERC0_RMII_TXD1 - High None "Peripheral mode" CMOS None "CTSU0: TS10; ETHERC0: RX_ER; ETHERC0: TXD1; GPT0: GTIOCB; IRQ0: IRQ09; PDC0: PIXD4; SDHI0: WP; SPI0: SSL1" - IO - -
P415 28 ETHERC0_RMII_TXD_EN - High None "Peripheral mode" CMOS None "CTSU0: TS11; ETHERC0: TX_EN; ETHERC0: TXD_EN; GPT0: GTIOCA; IRQ0: IRQ08; PDC0: PIXD5; SDHI0: CD; SPI0: SSL2; USBFS0: VBUSEN" - IO - -
P500 113 SDHI1_CLK - High - "Peripheral mode" CMOS None "ADC0: AN16; AGT0: AGTOA; CMP0: IVREF0; GPT11: GTIOCA; OPS0: GTIU; QSPI0: QSPCLK; SDHI1: CLK; USBFS0: VBUSEN" - IO - -
P501 114 SDHI1_CMD - High None "Peripheral mode" CMOS None "ADC1: AN16; AGT0: AGTOB; CMP0: IVREF1; GPT11: GTIOCB; IRQ0: IRQ11; OPS0: GTIV; QSPI0: QSSL; SCI5: SDA; SCI5: TXD_MOSI; SDHI1: CMD; USBFS0: OVRCURA" - IO - -
P502 115 SDHI1_DAT0 - High None "Peripheral mode" CMOS None "ADC0: AN17; CMP0: IVCMP0; GPT12: GTIOCA; IRQ0: IRQ12; OPS0: GTIW; QSPI0: QIO0; SCI5: RXD_MISO; SCI5: SCL; SDHI1: DAT0; USBFS0: OVRCURB" - IO - -
P503 116 SDHI1_DAT1 - High - "Peripheral mode" CMOS None "ADC1: AN17; GPT12: GTIOCB; POEG2: GTETRG; QSPI0: QIO1; SCI5: SCK; SCI6: CTS_RTS_SS; SDHI1: DAT1; USBFS0: EXICEN" - IO - -
P504 117 SDHI1_DAT2 - High - "Peripheral mode" CMOS None "ADC0: AN18; BUS0: ALE; GPT13: GTIOCA; POEG3: GTETRG; QSPI0: QIO2; SCI5: CTS_RTS_SS; SCI6: SCK; SDHI1: DAT2; USBFS0: ID" - IO - -
P505 118 SDHI1_DAT3 - High None "Peripheral mode" CMOS None "ADC1: AN18; GPT13: GTIOCB; IRQ0: IRQ14; QSPI0: QIO3; SCI6: RXD_MISO; SCI6: SCL; SDHI1: DAT3" - IO - -
P506 119 - - - - Disabled - - "ADC0: AN19; IRQ0: IRQ15; SCI6: SDA; SCI6: TXD_MOSI; SDHI1: CD" - None - -
P508 120 - - - - Disabled - - "ADC0: AN20; SCI5: SCK; SCI6: SCK" - None - -
P511 144 - - - - Disabled - - "CAN1: CRX; GPT0: GTIOCB; IIC2: SDA; IRQ0: IRQ15; PDC0: PCKO; SCI4: RXD_MISO; SCI4: SCL" - None - -
P512 143 - - - - Disabled - - "CAN1: CTX; GPT0: GTIOCA; IIC2: SCL; IRQ0: IRQ14; PDC0: VSYNC; SCI4: SDA; SCI4: TXD_MOSI" - None - -
P600 98 GLCDC0_LCD_DATA02 - High - "Peripheral mode" CMOS None "BUS0: RD; CAC0: CACREF; CGC0: CLKOUT; GLCDC0: LCD_DATA02; GPT6: GTIOCB; SCI9: SCK" - IO - -
P601 97 GLCDC0_LCD_DATA03 - High - "Peripheral mode" CMOS None "BUS0: WR_WR0_DQM0; GLCDC0: LCD_DATA03; GPT6: GTIOCA; SCI9: RXD_MISO; SCI9: SCL" - IO - -
P602 96 GLCDC0_LCD_DATA04 - High - "Peripheral mode" CMOS None "BUS0: BCLK_SDCLK; GLCDC0: LCD_DATA04; GPT7: GTIOCB; SCI9: SDA; SCI9: TXD_MOSI" - IO - -
P603 95 - - - - Disabled - - "BUS0: D13_DQ13; GPT7: GTIOCA; SCI9: CTS_RTS_SS" - None - -
P604 94 - - - - Disabled - - "BUS0: D12_DQ12; GPT8: GTIOCB" - None - -
P605 93 - - - - Disabled - - "BUS0: D11_DQ11; GPT8: GTIOCA" - None - -
P608 83 GLCDC0_LCD_DATA07 - High - "Peripheral mode" CMOS None "BUS0: A00_BC0_DQM1; GLCDC0: LCD_DATA07; GPT4: GTIOCB" - IO - -
P609 84 GLCDC0_LCD_DATA06 - High - "Peripheral mode" CMOS None "BUS0: CS1_CKE; CAN1: CTX; GLCDC0: LCD_DATA06; GPT5: GTIOCA" - IO - -
P610 85 GLCDC0_LCD_DATA05 - High - "Peripheral mode" CMOS None "BUS0: CS0_WE; CAN1: CRX; GLCDC0: LCD_DATA05; GPT5: GTIOCB" - IO - -
P611 86 - - - - Disabled - - "BUS0: SDCS; CAC0: CACREF; CGC0: CLKOUT; SCI7: CTS_RTS_SS" - None - -
P612 87 SCI7_SCK - Low - "Peripheral mode" CMOS None "BUS0: D8_DQ8; SCI7: SCK" - IO - -
P613 88 SCI7_TXD_MOSI - Low - "Peripheral mode" CMOS None "BUS0: D9_DQ9; SCI7: SDA; SCI7: TXD_MOSI" - IO - -
P614 89 SCI7_RXD_MISO - Low - "Peripheral mode" CMOS None "BUS0: D10_DQ10; SCI7: RXD_MISO; SCI7: SCL" - IO - -
P700 8 - - - - Disabled - - "ETHERC0: ETXD1; ETHERC0: TXD0; GPT5: GTIOCA; PDC0: PIXD3; SDHI1: DAT3; SPI1: MISO" - None - -
P701 9 - - - - Disabled - - "ETHERC0: ETXD0; ETHERC0: REF50CK; GPT5: GTIOCB; PDC0: PIXD2; SDHI1: DAT2; SPI1: MOSI" - None - -
P702 10 GPT6_GTIOCA - Low - "Peripheral mode" CMOS None "ETHERC0: ERXD1; ETHERC0: RXD0; GPT6: GTIOCA; PDC0: PIXD1; SDHI1: DAT1; SPI1: RSPCK" - IO - -
P703 11 GPT6_GTIOCB - Low - "Peripheral mode" CMOS None "CMP0: VCOUT; ETHERC0: ERXD0; ETHERC0: RXD1; GPT6: GTIOCB; PDC0: PIXD0; SDHI1: DAT0; SPI1: SSL0" - IO - -
P704 12 CAN0_CTX - Low - "Peripheral mode" CMOS None "AGT0: AGTO; CAN0: CTX; ETHERC0: RX_CLK; ETHERC0: RX_ER; PDC0: HSYNC; SDHI1: CLK; SPI1: SSL1" - IO - -
P705 13 CAN0_CRX - Low - "Peripheral mode" CMOS None "AGT0: AGTIO; CAN0: CRX; ETHERC0: CRS; ETHERC0: CRS_DV; PDC0: PIXCLK; SDHI1: CMD; SPI1: SSL2" - IO - -
P708 27 - - - - Disabled - - "CAC0: CACREF; CTSU0: TS12; ETHERC0: ETXD3; IRQ0: IRQ11; PDC0: PCKO; SCI1: RXD_MISO; SCI1: SCL; SPI0: SSL3; SSI: AUDIO_CLK" - None - -
P709 26 - - - - Disabled - - "CTSU0: TS13; ETHERC0: ETXD2; IRQ0: IRQ10; SCI1: SDA; SCI1: TXD_MOSI" - None - -
P710 25 - - - - Disabled - - "CTSU0: TS14; ETHERC0: TX_ER; SCI1: SCK" - None - -
P711 24 - - - - Disabled - - "AGT0: AGTEE; CTSU0: TS15; ETHERC0: TX_CLK; SCI1: CTS_RTS_SS" - None - -
P712 23 - - - - Disabled - - "AGT0: AGTOB; CTSU0: TS16; GPT2: GTIOCB" - None - -
P713 22 - - - - Disabled - - "AGT0: AGTOA; CTSU0: TS17; GPT2: GTIOCA" - None - -
P800 109 - - - - Disabled - - "BUS0: D14_DQ14" - None - -
P801 110 - - - - Disabled - - "BUS0: D15_DQ15; SDHI1: DAT4" - None - -
RES 55 - - - - - - - - - - "Read only" -
USBDM 38 USBFS0_USBDM - - - - - - - - IO "Read only" -
USBDP 39 USBFS0_USBDP - - - - - - - - IO "Read only" -
VBAT 14 - - - - - - - - - - "Read only" -
VCC 21 - - - - - - - - - - "Read only" -
VCC 49 - - - - - - - - - - "Read only" -
VCC 68 - - - - - - - - - - "Read only" -
VCC 81 - - - - - - - - - - "Read only" -
VCC 90 - - - - - - - - - - "Read only" -
VCC 99 - - - - - - - - - - "Read only" -
VCC 111 - - - - - - - - - - "Read only" -
VCC 121 - - - - - - - - - - "Read only" -
VCC 142 - - - - - - - - - - "Read only" -
VCCUSB 40 USBFS0_VCCUSB - - - - - - - - IO "Read only" -
VCL 15 - - - - - - - - - - "Read only" -
VCL1 92 - - - - - - - - - - "Read only" -
VREFH 126 ADC_VREFH - - - - - - - - IO "Read only" -
VREFH0 130 ADC_VREFH0 - - - - - - - - IO "Read only" -
VREFL 125 ADC_VREFL - - - - - - - - IO "Read only" -
VREFL0 129 ADC_VREFL0 - - - - - - - - IO "Read only" -
VSS 18 - - - - - - - - - - "Read only" -
VSS 48 - - - - - - - - - - "Read only" -
VSS 67 - - - - - - - - - - "Read only" -
VSS 82 - - - - - - - - - - "Read only" -
VSS 91 - - - - - - - - - - "Read only" -
VSS 100 - - - - - - - - - - "Read only" -
VSS 112 - - - - - - - - - - "Read only" -
VSS 122 - - - - - - - - - - "Read only" -
VSS 141 - - - - - - - - - - "Read only" -
VSSUSB 37 USBFS0_VSSUSB - - - - - - - - IO "Read only" -
XCIN 16 CGC0_XCIN - - - - - - - - IO "Read only" -
XCOUT 17 CGC0_XCOUT - - - - - - - - IO "Read only" -
User Events
User Event Links
Module "I/O Port (r_ioport)"
Parameter Checking: Default (BSP)
Module "UART (r_sci_uart)"
Parameter Checking: Default (BSP)
FIFO Support: Disable
DTC Support: Disable
Flow Control Support: Disable
RS-485 Support: Disable
Module "SD/MMC (r_sdhi)"
Parameter Checking: Default (BSP)
Unaligned Access Support: Enabled
SD Support: Enabled
eMMC Support: Disabled
Module "Transfer (r_dmac)"
Parameter Checking: Default (BSP)
Module "Graphics LCD (r_glcdc)"
Parameter Checking: Default (BSP)
Color Correction: Off
Module "D/AVE 2D Port Interface (r_drw)"
Allow Indirect Mode: Enabled
Memory Allocation: Default
Module "D/AVE 2D (r_drw)"
Module "JPEG Codec (r_jpeg)"
Parameter Checking: Default (BSP)
Decode Support: Enabled
Encode Support: Disabled
Module "Timer, General PWM (r_gpt)"
Parameter Checking: Default (BSP)
Pin Output Support: Enabled
Write Protect Enable: Disabled
Clock Source: PCLKD
Module "SPI (r_sci_spi)"
Parameter Checking: Default (BSP)
DTC Support: Enabled
Module "Transfer (r_dtc)"
Parameter Checking: Default (BSP)
Linker section to keep DTC vector table: .fsp_dtc_vector_table
Module "CAN (r_can)"
Parameter Checking: Default (BSP)
FIFO Support: Disabled
Module "External IRQ (r_icu)"
Parameter Checking: Default (BSP)
Module "Ethernet (r_ether)"
Parameter Checking: Default (BSP)
ET0_LINKSTA Pin Status Flag: Fall -> Rise
Link Signal Change Flag: Unused
Module "Ethernet (r_ether_phy)"
Parameter Checking: Default (BSP)
Select PHY(DEPRECATED): Default
KSZ8091RNZ Target: Disabled
KSZ8041 Target: Disabled
DP83620 Target: Disabled
ICS1894 Target: Disabled
Reference Clock: Default
Module "I2S (r_ssi)"
Parameter Checking: Default (BSP)
DTC Support: Enabled
Module "Realtime Clock (r_rtc)"
Parameter Checking: Default (BSP)
Set Source Clock in Open: Enabled
HAL
Instance "g_ioport I/O Port (r_ioport)"
Name: g_ioport
1st Port ELC Trigger Source: Disabled
2nd Port ELC Trigger Source: Disabled
3rd Port ELC Trigger Source: Disabled
4th Port ELC Trigger Source: Disabled
Pin Configuration Name: g_bsp_pin_cfg
Instance "g_uart9 UART (r_sci_uart)"
General: Name: g_uart9
General: Channel: 9
General: Data Bits: 8bits
General: Parity: None
General: Stop Bits: 1bit
Baud: Baud Rate: 115200
Baud: Baud Rate Modulation: Disabled
Baud: Max Error (%): 5
Flow Control: CTS/RTS Selection: Hardware RTS
Flow Control: Software RTS Port: Disabled
Flow Control: Software RTS Pin: Disabled
Extra: Clock Source: Internal Clock
Extra: Start bit detection: Falling Edge
Extra: Noise Filter: Disable
Extra: Receive FIFO Trigger Level: Max
Extra: RS-485: DE Pin: Disable
Extra: RS-485: DE Pin Polarity: Active High
Extra: RS-485: DE Port Number: Disabled
Extra: RS-485: DE Pin Number: Disabled
Interrupts: Callback: user_uart9_callback
Interrupts: Receive Interrupt Priority: Priority 12
Interrupts: Transmit Data Empty Interrupt Priority: Priority 12
Interrupts: Transmit End Interrupt Priority: Priority 12
Interrupts: Error Interrupt Priority: Priority 12
Instance "g_sdmmc1 SD/MMC (r_sdhi)"
Name: g_sdmmc1
Channel: 1
Bus Width: 4 Bits
Block Size: 512
Card Detection: CD Pin
Write Protection: Not Used
Callback: NULL
Access Interrupt Priority: Priority 12
Card Interrupt Priority: Priority 12
DTC Interrupt Priority: Disabled
Instance "g_transfer0 Transfer (r_dmac) SDHIMMC1 DMA REQ (DMA transfer request)"
Name: g_transfer0
Channel: 0
Mode: Normal
Transfer Size: 4 Bytes
Destination Address Mode: Fixed
Source Address Mode: Incremented
Repeat Area (Unused in Normal Mode): Source
Destination Pointer: NULL
Source Pointer: NULL
Number of Transfers: 128
Number of Blocks (Valid only in Repeat,Block or Repeat-Block Mode): 0
Activation Source: SDHIMMC1 DMA REQ (DMA transfer request)
Callback: g_sdmmc1_dmac_callback
Context: &g_sdmmc1_ctrl
Transfer End Interrupt Priority: Priority 12
Interrupt Frequency: Interrupt after all transfers have completed
Offset value (Valid only when address mode is \'Offset\'): 1
Source Buffer Size: 1
Instance "g_display0 Graphics LCD (r_glcdc)"
General: Name: g_display0
Interrupts: Callback Function: _ra_port_display_callback
Interrupts: Line Detect Interrupt Priority: Priority 12
Interrupts: Underflow 1 Interrupt Priority: Disabled
Interrupts: Underflow 2 Interrupt Priority: Disabled
Input: Graphics Layer 1: General: Enabled: Yes
Input: Graphics Layer 1: General: Horizontal size: 480
Input: Graphics Layer 1: General: Vertical size: 272
Input: Graphics Layer 1: General: Horizontal position: 0
Input: Graphics Layer 1: General: Vertical position: 0
Input: Graphics Layer 1: Background Color: Alpha: 255
Input: Graphics Layer 1: Background Color: Red: 255
Input: Graphics Layer 1: Background Color: Green: 255
Input: Graphics Layer 1: Background Color: Blue: 255
Input: Graphics Layer 1: Framebuffer: Framebuffer name: fb_background
Input: Graphics Layer 1: Framebuffer: Number of framebuffers: 1
Input: Graphics Layer 1: Framebuffer: Section for framebuffer allocation: .bss
Input: Graphics Layer 1: General: Color format: RGB565 (16-bit)
Input: Graphics Layer 1: General: Line descending mode: Disabled
Input: Graphics Layer 1: Line Repeat: Enable: Off
Input: Graphics Layer 1: Line Repeat: Repeat count: 0
Input: Graphics Layer 1: Fading: Mode: None
Input: Graphics Layer 1: Fading: Speed: 0
Input: Graphics Layer 2: General: Enabled: No
Input: Graphics Layer 2: General: Horizontal size: 480
Input: Graphics Layer 2: General: Vertical size: 272
Input: Graphics Layer 2: General: Horizontal position: 0
Input: Graphics Layer 2: General: Vertical position: 0
Input: Graphics Layer 2: Background Color: Alpha: 255
Input: Graphics Layer 2: Background Color: Red: 255
Input: Graphics Layer 2: Background Color: Green: 255
Input: Graphics Layer 2: Background Color: Blue: 255
Input: Graphics Layer 2: Framebuffer: Framebuffer name: fb_foreground
Input: Graphics Layer 2: Framebuffer: Number of framebuffers: 2
Input: Graphics Layer 2: Framebuffer: Section for framebuffer allocation: .bss
Input: Graphics Layer 2: General: Color format: RGB565 (16-bit)
Input: Graphics Layer 2: General: Line descending mode: Disabled
Input: Graphics Layer 2: Line Repeat: Enable: Off
Input: Graphics Layer 2: Line Repeat: Repeat count: 0
Input: Graphics Layer 2: Fading: Mode: None
Input: Graphics Layer 2: Fading: Speed: 0
Output: Timing: Horizontal total cycles: 525
Output: Timing: Horizontal active video cycles: 480
Output: Timing: Horizontal back porch cycles: 40
Output: Timing: Horizontal sync signal cycles: 1
Output: Timing: Horizontal sync signal polarity: Low active
Output: Timing: Vertical total lines: 316
Output: Timing: Vertical active video lines: 272
Output: Timing: Vertical back porch lines: 8
Output: Timing: Vertical sync signal lines: 1
Output: Timing: Vertical sync signal polarity: Low active
Output: Timing: Data Enable Signal Polarity: High active
Output: Timing: Sync edge: Rising edge
Output: Format: Color format: 16bits RGB565
Output: Format: Color order: BGR
Output: Format: Endian: Little endian
Output: Background: Alpha: 255
Output: Background: Red: 0
Output: Background: Green: 0
Output: Background: Blue: 0
CLUT: Enabled: No
CLUT: Size: 256
TCON: Hsync pin select: LCD_TCON0
TCON: Vsync pin select: LCD_TCON1
TCON: Data enable (DE) pin select: LCD_TCON2
TCON: Panel clock source: Internal clock (GLCDCLK)
TCON: Panel clock division ratio: 1/24
Color Correction: Process order: Brightness/contrast first
Color Correction: Brightness: Enabled: No
Color Correction: Brightness: Red channel: 512
Color Correction: Brightness: Green channel: 512
Color Correction: Brightness: Blue channel: 512
Color Correction: Contrast: Enabled: No
Color Correction: Contrast: Red channel gain: 128
Color Correction: Contrast: Green channel gain: 128
Color Correction: Contrast: Blue channel gain: 128
Color Correction: Gamma: Red: Off
Color Correction: Gamma: Green: Off
Color Correction: Gamma: Blue: Off
Color Correction: Gamma: Table Mode: Variable
Color Correction: Gamma: Tables: Red: Gain: 0: 1024
Color Correction: Gamma: Tables: Red: Gain: 1: 1024
Color Correction: Gamma: Tables: Red: Gain: 2: 1024
Color Correction: Gamma: Tables: Red: Gain: 3: 1024
Color Correction: Gamma: Tables: Red: Gain: 4: 1024
Color Correction: Gamma: Tables: Red: Gain: 5: 1024
Color Correction: Gamma: Tables: Red: Gain: 6: 1024
Color Correction: Gamma: Tables: Red: Gain: 7: 1024
Color Correction: Gamma: Tables: Red: Gain: 8: 1024
Color Correction: Gamma: Tables: Red: Gain: 9: 1024
Color Correction: Gamma: Tables: Red: Gain: 10: 1024
Color Correction: Gamma: Tables: Red: Gain: 11: 1024
Color Correction: Gamma: Tables: Red: Gain: 12: 1024
Color Correction: Gamma: Tables: Red: Gain: 13: 1024
Color Correction: Gamma: Tables: Red: Gain: 14: 1024
Color Correction: Gamma: Tables: Red: Gain: 15: 1024
Color Correction: Gamma: Tables: Red: Threshold: 1: 64
Color Correction: Gamma: Tables: Red: Threshold: 2: 128
Color Correction: Gamma: Tables: Red: Threshold: 3: 192
Color Correction: Gamma: Tables: Red: Threshold: 4: 256
Color Correction: Gamma: Tables: Red: Threshold: 5: 320
Color Correction: Gamma: Tables: Red: Threshold: 6: 384
Color Correction: Gamma: Tables: Red: Threshold: 7: 448
Color Correction: Gamma: Tables: Red: Threshold: 8: 512
Color Correction: Gamma: Tables: Red: Threshold: 9: 576
Color Correction: Gamma: Tables: Red: Threshold: 10: 640
Color Correction: Gamma: Tables: Red: Threshold: 11: 704
Color Correction: Gamma: Tables: Red: Threshold: 12: 768
Color Correction: Gamma: Tables: Red: Threshold: 13: 832
Color Correction: Gamma: Tables: Red: Threshold: 14: 896
Color Correction: Gamma: Tables: Red: Threshold: 15: 960
Color Correction: Gamma: Tables: Green: Gain: 0: 1024
Color Correction: Gamma: Tables: Green: Gain: 1: 1024
Color Correction: Gamma: Tables: Green: Gain: 2: 1024
Color Correction: Gamma: Tables: Green: Gain: 3: 1024
Color Correction: Gamma: Tables: Green: Gain: 4: 1024
Color Correction: Gamma: Tables: Green: Gain: 5: 1024
Color Correction: Gamma: Tables: Green: Gain: 6: 1024
Color Correction: Gamma: Tables: Green: Gain: 7: 1024
Color Correction: Gamma: Tables: Green: Gain: 8: 1024
Color Correction: Gamma: Tables: Green: Gain: 9: 1024
Color Correction: Gamma: Tables: Green: Gain: 10: 1024
Color Correction: Gamma: Tables: Green: Gain: 11: 1024
Color Correction: Gamma: Tables: Green: Gain: 12: 1024
Color Correction: Gamma: Tables: Green: Gain: 13: 1024
Color Correction: Gamma: Tables: Green: Gain: 14: 1024
Color Correction: Gamma: Tables: Green: Gain: 15: 1024
Color Correction: Gamma: Tables: Green: Threshold: 1: 64
Color Correction: Gamma: Tables: Green: Threshold: 2: 128
Color Correction: Gamma: Tables: Green: Threshold: 3: 192
Color Correction: Gamma: Tables: Green: Threshold: 4: 256
Color Correction: Gamma: Tables: Green: Threshold: 5: 320
Color Correction: Gamma: Tables: Green: Threshold: 6: 384
Color Correction: Gamma: Tables: Green: Threshold: 7: 448
Color Correction: Gamma: Tables: Green: Threshold: 8: 512
Color Correction: Gamma: Tables: Green: Threshold: 9: 576
Color Correction: Gamma: Tables: Green: Threshold: 10: 640
Color Correction: Gamma: Tables: Green: Threshold: 11: 704
Color Correction: Gamma: Tables: Green: Threshold: 12: 768
Color Correction: Gamma: Tables: Green: Threshold: 13: 832
Color Correction: Gamma: Tables: Green: Threshold: 14: 896
Color Correction: Gamma: Tables: Green: Threshold: 15: 960
Color Correction: Gamma: Tables: Blue: Gain: 0: 1024
Color Correction: Gamma: Tables: Blue: Gain: 1: 1024
Color Correction: Gamma: Tables: Blue: Gain: 2: 1024
Color Correction: Gamma: Tables: Blue: Gain: 3: 1024
Color Correction: Gamma: Tables: Blue: Gain: 4: 1024
Color Correction: Gamma: Tables: Blue: Gain: 5: 1024
Color Correction: Gamma: Tables: Blue: Gain: 6: 1024
Color Correction: Gamma: Tables: Blue: Gain: 7: 1024
Color Correction: Gamma: Tables: Blue: Gain: 8: 1024
Color Correction: Gamma: Tables: Blue: Gain: 9: 1024
Color Correction: Gamma: Tables: Blue: Gain: 10: 1024
Color Correction: Gamma: Tables: Blue: Gain: 11: 1024
Color Correction: Gamma: Tables: Blue: Gain: 12: 1024
Color Correction: Gamma: Tables: Blue: Gain: 13: 1024
Color Correction: Gamma: Tables: Blue: Gain: 14: 1024
Color Correction: Gamma: Tables: Blue: Gain: 15: 1024
Color Correction: Gamma: Tables: Blue: Threshold: 1: 64
Color Correction: Gamma: Tables: Blue: Threshold: 2: 128
Color Correction: Gamma: Tables: Blue: Threshold: 3: 192
Color Correction: Gamma: Tables: Blue: Threshold: 4: 256
Color Correction: Gamma: Tables: Blue: Threshold: 5: 320
Color Correction: Gamma: Tables: Blue: Threshold: 6: 384
Color Correction: Gamma: Tables: Blue: Threshold: 7: 448
Color Correction: Gamma: Tables: Blue: Threshold: 8: 512
Color Correction: Gamma: Tables: Blue: Threshold: 9: 576
Color Correction: Gamma: Tables: Blue: Threshold: 10: 640
Color Correction: Gamma: Tables: Blue: Threshold: 11: 704
Color Correction: Gamma: Tables: Blue: Threshold: 12: 768
Color Correction: Gamma: Tables: Blue: Threshold: 13: 832
Color Correction: Gamma: Tables: Blue: Threshold: 14: 896
Color Correction: Gamma: Tables: Blue: Threshold: 15: 960
Dithering: Enabled: No
Dithering: Mode: Truncate
Dithering: Pattern A: Pattern 11
Dithering: Pattern B: Pattern 11
Dithering: Pattern C: Pattern 11
Dithering: Pattern D: Pattern 11
Instance "D/AVE 2D Port Interface (r_drw)"
D2 Device Handle Name: d2_handle0
DRW Interrupt Priority: Priority 2
Instance "D/AVE 2D (r_drw)"
Instance "g_jpeg0 JPEG Codec (r_jpeg)"
General: Name: g_jpeg0
General: Default mode: Decode
Decode: Input byte order: Normal byte order (1)(2)(3)(4)(5)(6)(7)(8)
Decode: Output byte order: Normal byte order (1)(2)(3)(4)(5)(6)(7)(8)
Decode: Output color format: RGB565 (16-bit)
Decode: Output alpha (ARGB8888 only): 255
Decode: Callback: decode_callback
Encode: Horizontal resolution: 480
Encode: Vertical resolution: 272
Encode: Horizontal stride: 480
Encode: Input byte order: Normal byte order (1)(2)(3)(4)(5)(6)(7)(8)
Encode: Output byte order: Normal byte order (1)(2)(3)(4)(5)(6)(7)(8)
Encode: Reset interval: 512
Encode: Quality factor: 50
Encode: Callback: NULL
Interrupts: Decode Process Interrupt Priority: Priority 8
Interrupts: Data Transfer Interrupt Priority: Priority 8
Instance "g_timer6 Timer, General PWM (r_gpt)"
General: Name: g_timer6
General: Channel: 6
General: Mode: Periodic
General: Period: 78
General: Period Unit: Kilohertz
Output: Custom Waveform: GTIOA: Initial Output Level: Pin Level Low
Output: Custom Waveform: GTIOA: Cycle End Output Level: Pin Level Retain
Output: Custom Waveform: GTIOA: Compare Match Output Level: Pin Level Retain
Output: Custom Waveform: GTIOA: Retain Output Level at Count Stop: Disabled
Output: Custom Waveform: GTIOB: Initial Output Level: Pin Level Low
Output: Custom Waveform: GTIOB: Cycle End Output Level: Pin Level Retain
Output: Custom Waveform: GTIOB: Compare Match Output Level: Pin Level Retain
Output: Custom Waveform: GTIOB: Retain Output Level at Count Stop: Disabled
Output: Custom Waveform: Custom Waveform Enable: Disabled
Output: Duty Cycle Percent (only applicable in PWM mode): 50
Output: GTIOCA Output Enabled: True
Output: GTIOCA Stop Level: Pin Level Low
Output: GTIOCB Output Enabled: True
Output: GTIOCB Stop Level: Pin Level Low
Input: Count Up Source:
Input: Count Down Source:
Input: Start Source:
Input: Stop Source:
Input: Clear Source:
Input: Capture A Source:
Input: Capture B Source:
Input: Noise Filter A Sampling Clock Select: No Filter
Input: Noise Filter B Sampling Clock Select: No Filter
Interrupts: Callback: NULL
Interrupts: Overflow/Crest Interrupt Priority: Disabled
Interrupts: Capture A Interrupt Priority: Disabled
Interrupts: Capture B Interrupt Priority: Disabled
Interrupts: Underflow/Trough Interrupt Priority: Disabled
Extra Features: Extra Features: Disabled
Extra Features: Output Disable: POEG Link: POEG Channel 0
Extra Features: Output Disable: Output Disable POEG Trigger:
Extra Features: ADC Trigger: Start Event Trigger (Channels with GTINTAD only):
Extra Features: Dead Time (Value range varies with Channel): Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time (Value range varies with Channel): Dead Time Count Down (Raw Counts) (Channels with GTDVD only): 0
Extra Features: ADC Trigger (Channels with GTADTRA only): ADC A Compare Match (Raw Counts): 0
Extra Features: ADC Trigger (Channels with GTADTRB only): ADC B Compare Match (Raw Counts): 0
Extra Features: Interrupt Skipping (Channels with GTITC only): Interrupt to Count: None
Extra Features: Interrupt Skipping (Channels with GTITC only): Interrupt Skip Count: 0
Extra Features: Interrupt Skipping (Channels with GTITC only): Skip ADC Events: None
Extra Features: Output Disable: GTIOCA Disable Setting: Disable Prohibited
Extra Features: Output Disable: GTIOCB Disable Setting: Disable Prohibited
Instance "g_timer2 Timer, General PWM (r_gpt)"
General: Name: g_timer2
General: Channel: 2
General: Mode: Periodic
General: Period: 48
General: Period Unit: Kilohertz
Output: Custom Waveform: GTIOA: Initial Output Level: Pin Level Low
Output: Custom Waveform: GTIOA: Cycle End Output Level: Pin Level Retain
Output: Custom Waveform: GTIOA: Compare Match Output Level: Pin Level Retain
Output: Custom Waveform: GTIOA: Retain Output Level at Count Stop: Disabled
Output: Custom Waveform: GTIOB: Initial Output Level: Pin Level Low
Output: Custom Waveform: GTIOB: Cycle End Output Level: Pin Level Retain
Output: Custom Waveform: GTIOB: Compare Match Output Level: Pin Level Retain
Output: Custom Waveform: GTIOB: Retain Output Level at Count Stop: Disabled
Output: Custom Waveform: Custom Waveform Enable: Disabled
Output: Duty Cycle Percent (only applicable in PWM mode): 50
Output: GTIOCA Output Enabled: False
Output: GTIOCA Stop Level: Pin Level Low
Output: GTIOCB Output Enabled: False
Output: GTIOCB Stop Level: Pin Level Low
Input: Count Up Source:
Input: Count Down Source:
Input: Start Source:
Input: Stop Source:
Input: Clear Source:
Input: Capture A Source:
Input: Capture B Source:
Input: Noise Filter A Sampling Clock Select: No Filter
Input: Noise Filter B Sampling Clock Select: No Filter
Interrupts: Callback: cb_timer2
Interrupts: Overflow/Crest Interrupt Priority: Priority 8
Interrupts: Capture A Interrupt Priority: Disabled
Interrupts: Capture B Interrupt Priority: Disabled
Interrupts: Underflow/Trough Interrupt Priority: Disabled
Extra Features: Extra Features: Disabled
Extra Features: Output Disable: POEG Link: POEG Channel 0
Extra Features: Output Disable: Output Disable POEG Trigger:
Extra Features: ADC Trigger: Start Event Trigger (Channels with GTINTAD only):
Extra Features: Dead Time (Value range varies with Channel): Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time (Value range varies with Channel): Dead Time Count Down (Raw Counts) (Channels with GTDVD only): 0
Extra Features: ADC Trigger (Channels with GTADTRA only): ADC A Compare Match (Raw Counts): 0
Extra Features: ADC Trigger (Channels with GTADTRB only): ADC B Compare Match (Raw Counts): 0
Extra Features: Interrupt Skipping (Channels with GTITC only): Interrupt to Count: None
Extra Features: Interrupt Skipping (Channels with GTITC only): Interrupt Skip Count: 0
Extra Features: Interrupt Skipping (Channels with GTITC only): Skip ADC Events: None
Extra Features: Output Disable: GTIOCA Disable Setting: Disable Prohibited
Extra Features: Output Disable: GTIOCB Disable Setting: Disable Prohibited
Instance "g_sci_spi6 SPI (r_sci_spi)"
Name: g_sci_spi6
Channel: 6
Operating Mode: Master
Clock Phase: Data sampling on odd edge, data variation on even edge
Clock Polarity: Low when idle
Mode Fault Error: Disable
Bit Order: MSB First
Callback: sci_spi6_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 8000000
Bitrate Modulation: Enabled
Instance "g_transfer1 Transfer (r_dtc) SCI6 TXI (Transmit data empty)"
Name: g_transfer1
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Fixed
Source Address Mode: Incremented
Repeat Area (Unused in Normal Mode): Source
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI6 TXI (Transmit data empty)
Instance "g_transfer2 Transfer (r_dtc) SCI6 RXI (Received data full)"
Name: g_transfer2
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Incremented
Source Address Mode: Fixed
Repeat Area (Unused in Normal Mode): Destination
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI6 RXI (Received data full)
Instance "g_sci_spi3 SPI (r_sci_spi)"
Name: g_sci_spi3
Channel: 3
Operating Mode: Master
Clock Phase: Data sampling on odd edge, data variation on even edge
Clock Polarity: Low when idle
Mode Fault Error: Disable
Bit Order: MSB First
Callback: sci_spi3_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 8000000
Bitrate Modulation: Enabled
Instance "g_transfer3 Transfer (r_dtc) SCI3 TXI (Transmit data empty)"
Name: g_transfer3
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Fixed
Source Address Mode: Incremented
Repeat Area (Unused in Normal Mode): Source
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI3 TXI (Transmit data empty)
Instance "g_transfer4 Transfer (r_dtc) SCI3 RXI (Received data full)"
Name: g_transfer4
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Incremented
Source Address Mode: Fixed
Repeat Area (Unused in Normal Mode): Destination
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI3 RXI (Received data full)
Instance "g_can0 CAN (r_can)"
General: Name: g_can0
General: Channel: 0
General: Clock Source: Main oscillator (CANMCLK)
Baud Rate Settings: Auto-generated Settings: Sample-Point (%): 80
Baud Rate Settings: Auto-generated Settings: CAN Baud Rate (Hz): 1000000
Baud Rate Settings: Override Auto-generated Settings: Override Baud Settings: Disabled
Baud Rate Settings: Override Auto-generated Settings: Baud Rate Prescaler: 1
Baud Rate Settings: Override Auto-generated Settings: Time Segment 1: 4 Time Quanta
Baud Rate Settings: Override Auto-generated Settings: Time Segment 2: 2 Time Quanta
Baud Rate Settings: Override Auto-generated Settings: Synchronization Jump Width: 1 Time Quanta
Interrupts: Callback: can0_callback
General: Overwrite/Overrrun Mode: Overwrite Mode
General: Global ID Mode: Standard ID Mode
General: Number of Mailboxes: 32 Mailboxes
Input: Receive FIFO: Receive ID 1: ID: 0
Input: Receive FIFO: Receive ID 2: ID: 0
Input: Mailbox 0-3 Group: Mailbox ID: Mailbox 0 ID: 0x100
Input: Mailbox 0-3 Group: Mailbox ID: Mailbox 1 ID: 1
Input: Mailbox 0-3 Group: Mailbox ID: Mailbox 2 ID: 2
Input: Mailbox 0-3 Group: Mailbox ID: Mailbox 3 ID: 3
Input: Mailbox 4-7 Group: Mailbox ID: Mailbox 4 ID: 4
Input: Mailbox 4-7 Group: Mailbox ID: Mailbox 5 ID: 5
Input: Mailbox 4-7 Group: Mailbox ID: Mailbox 6 ID: 6
Input: Mailbox 4-7 Group: Mailbox ID: Mailbox 7 ID: 7
Input: Mailbox 8-11 Group: Mailbox ID: Mailbox 8 ID: 8
Input: Mailbox 8-11 Group: Mailbox ID: Mailbox 9 ID: 9
Input: Mailbox 8-11 Group: Mailbox ID: Mailbox 10 ID: 10
Input: Mailbox 8-11 Group: Mailbox ID: Mailbox 11 ID: 11
Input: Mailbox 12-15 Group: Mailbox ID: Mailbox 12 ID: 12
Input: Mailbox 12-15 Group: Mailbox ID: Mailbox 13 ID: 13
Input: Mailbox 12-15 Group: Mailbox ID: Mailbox 14 ID: 14
Input: Mailbox 12-15 Group: Mailbox ID: Mailbox 15 ID: 15
Input: Mailbox 16-19 Group: Mailbox ID: Mailbox 16 ID: 16
Input: Mailbox 16-19 Group: Mailbox ID: Mailbox 17 ID: 17
Input: Mailbox 16-19 Group: Mailbox ID: Mailbox 18 ID: 18
Input: Mailbox 16-19 Group: Mailbox ID: Mailbox 19 ID: 19
Input: Mailbox 20-23 Group: Mailbox ID: Mailbox 20 ID: 20
Input: Mailbox 20-23 Group: Mailbox ID: Mailbox 21 ID: 21
Input: Mailbox 20-23 Group: Mailbox ID: Mailbox 22 ID: 22
Input: Mailbox 20-23 Group: Mailbox ID: Mailbox 23 ID: 23
Input: Mailbox 24-27 Group: Mailbox ID: Mailbox 24 ID: 24
Input: Mailbox 24-27 Group: Mailbox ID: Mailbox 25 ID: 25
Input: Mailbox 24-27 Group: Mailbox ID: Mailbox 26 ID: 26
Input: Mailbox 24-27 Group: Mailbox ID: Mailbox 27 ID: 27
Input: Mailbox 28-31 Group: Mailbox ID: Mailbox 28 ID: 28
Input: Mailbox 28-31 Group: Mailbox ID: Mailbox 29 ID: 29
Input: Mailbox 28-31 Group: Mailbox ID: Mailbox 30 ID: 30
Input: Mailbox 28-31 Group: Mailbox ID: Mailbox 31 ID: 31
Input: Receive FIFO: Receive ID 1: ID Mode: Standard ID
Input: Receive FIFO: Receive ID 2: ID Mode: Standard ID
Input: Mailbox 0-3 Group: Mailbox ID Mode: Mailbox 0 ID Mode: Standard ID
Input: Mailbox 0-3 Group: Mailbox ID Mode: Mailbox 1 ID Mode: Extended ID
Input: Mailbox 0-3 Group: Mailbox ID Mode: Mailbox 2 ID Mode: Standard ID
Input: Mailbox 0-3 Group: Mailbox ID Mode: Mailbox 3 ID Mode: Extended ID
Input: Mailbox 4-7 Group: Mailbox ID Mode: Mailbox 4 ID Mode: Standard ID
Input: Mailbox 4-7 Group: Mailbox ID Mode: Mailbox 5 ID Mode: Standard ID
Input: Mailbox 4-7 Group: Mailbox ID Mode: Mailbox 6 ID Mode: Standard ID
Input: Mailbox 4-7 Group: Mailbox ID Mode: Mailbox 7 ID Mode: Standard ID
Input: Mailbox 8-11 Group: Mailbox ID Mode: Mailbox 8 ID Mode: Standard ID
Input: Mailbox 8-11 Group: Mailbox ID Mode: Mailbox 9 ID Mode: Standard ID
Input: Mailbox 8-11 Group: Mailbox ID Mode: Mailbox 10 ID Mode: Standard ID
Input: Mailbox 8-11 Group: Mailbox ID Mode: Mailbox 11 ID Mode: Standard ID
Input: Mailbox 12-15 Group: Mailbox ID Mode: Mailbox 12 ID Mode: Standard ID
Input: Mailbox 12-15 Group: Mailbox ID Mode: Mailbox 13 ID Mode: Standard ID
Input: Mailbox 12-15 Group: Mailbox ID Mode: Mailbox 14 ID Mode: Standard ID
Input: Mailbox 12-15 Group: Mailbox ID Mode: Mailbox 15 ID Mode: Standard ID
Input: Mailbox 16-19 Group: Mailbox ID Mode: Mailbox 16 ID Mode: Standard ID
Input: Mailbox 16-19 Group: Mailbox ID Mode: Mailbox 17 ID Mode: Standard ID
Input: Mailbox 16-19 Group: Mailbox ID Mode: Mailbox 18 ID Mode: Standard ID
Input: Mailbox 16-19 Group: Mailbox ID Mode: Mailbox 19 ID Mode: Standard ID
Input: Mailbox 20-23 Group: Mailbox ID Mode: Mailbox 20 ID Mode: Standard ID
Input: Mailbox 20-23 Group: Mailbox ID Mode: Mailbox 21 ID Mode: Standard ID
Input: Mailbox 20-23 Group: Mailbox ID Mode: Mailbox 22 ID Mode: Standard ID
Input: Mailbox 20-23 Group: Mailbox ID Mode: Mailbox 23 ID Mode: Standard ID
Input: Mailbox 24-27 Group: Mailbox ID Mode: Mailbox 24 ID Mode: Standard ID
Input: Mailbox 24-27 Group: Mailbox ID Mode: Mailbox 25 ID Mode: Standard ID
Input: Mailbox 24-27 Group: Mailbox ID Mode: Mailbox 26 ID Mode: Standard ID
Input: Mailbox 24-27 Group: Mailbox ID Mode: Mailbox 27 ID Mode: Standard ID
Input: Mailbox 28-31 Group: Mailbox ID Mode: Mailbox 28 ID Mode: Standard ID
Input: Mailbox 28-31 Group: Mailbox ID Mode: Mailbox 29 ID Mode: Standard ID
Input: Mailbox 28-31 Group: Mailbox ID Mode: Mailbox 30 ID Mode: Standard ID
Input: Mailbox 28-31 Group: Mailbox ID Mode: Mailbox 31 ID Mode: Standard ID
Input: Mailbox 0-3 Group: Mailbox Type: Mailbox 0 Type: Receive Mailbox
Input: Mailbox 0-3 Group: Mailbox Type: Mailbox 1 Type: Receive Mailbox
Input: Mailbox 0-3 Group: Mailbox Type: Mailbox 2 Type: Transmit Mailbox
Input: Mailbox 0-3 Group: Mailbox Type: Mailbox 3 Type: Transmit Mailbox
Input: Mailbox 4-7 Group: Mailbox Type: Mailbox 4 Type: Receive Mailbox
Input: Mailbox 4-7 Group: Mailbox Type: Mailbox 5 Type: Receive Mailbox
Input: Mailbox 4-7 Group: Mailbox Type: Mailbox 6 Type: Receive Mailbox
Input: Mailbox 4-7 Group: Mailbox Type: Mailbox 7 Type: Receive Mailbox
Input: Mailbox 8-11 Group: Mailbox Type: Mailbox 8 Type: Receive Mailbox
Input: Mailbox 8-11 Group: Mailbox Type: Mailbox 9 Type: Receive Mailbox
Input: Mailbox 8-11 Group: Mailbox Type: Mailbox 10 Type: Receive Mailbox
Input: Mailbox 8-11 Group: Mailbox Type: Mailbox 11 Type: Receive Mailbox
Input: Mailbox 12-15 Group: Mailbox Type: Mailbox 12 Type: Receive Mailbox
Input: Mailbox 12-15 Group: Mailbox Type: Mailbox 13 Type: Receive Mailbox
Input: Mailbox 12-15 Group: Mailbox Type: Mailbox 14 Type: Receive Mailbox
Input: Mailbox 12-15 Group: Mailbox Type: Mailbox 15 Type: Receive Mailbox
Input: Mailbox 16-19 Group: Mailbox Type: Mailbox 16 Type: Receive Mailbox
Input: Mailbox 16-19 Group: Mailbox Type: Mailbox 17 Type: Receive Mailbox
Input: Mailbox 16-19 Group: Mailbox Type: Mailbox 18 Type: Receive Mailbox
Input: Mailbox 16-19 Group: Mailbox Type: Mailbox 19 Type: Receive Mailbox
Input: Mailbox 20-23 Group: Mailbox Type: Mailbox 20 Type: Receive Mailbox
Input: Mailbox 20-23 Group: Mailbox Type: Mailbox 21 Type: Receive Mailbox
Input: Mailbox 20-23 Group: Mailbox Type: Mailbox 22 Type: Receive Mailbox
Input: Mailbox 20-23 Group: Mailbox Type: Mailbox 23 Type: Receive Mailbox
Input: Mailbox 24-27 Group: Mailbox Type: Mailbox 24 Type: Receive Mailbox
Input: Mailbox 24-27 Group: Mailbox Type: Mailbox 25 Type: Receive Mailbox
Input: Mailbox 24-27 Group: Mailbox Type: Mailbox 26 Type: Receive Mailbox
Input: Mailbox 24-27 Group: Mailbox Type: Mailbox 27 Type: Receive Mailbox
Input: Mailbox 28-31 Group: Mailbox Type: Mailbox 28 Type: Receive Mailbox
Input: Mailbox 28-31 Group: Mailbox Type: Mailbox 29 Type: Receive Mailbox
Input: Mailbox 28-31 Group: Mailbox Type: Mailbox 30 Type: Receive Mailbox
Input: Mailbox 28-31 Group: Mailbox Type: Mailbox 31 Type: Receive Mailbox
Input: Receive FIFO: Receive ID 1: Frame Type: Remote Mailbox
Input: Receive FIFO: Receive ID 2: Frame Type: Remote Mailbox
Input: Mailbox 0-3 Group: Mailbox Frame Type: Mailbox 0 Frame Type: Data Mailbox
Input: Mailbox 0-3 Group: Mailbox Frame Type: Mailbox 1 Frame Type: Data Mailbox
Input: Mailbox 0-3 Group: Mailbox Frame Type: Mailbox 2 Frame Type: Data Mailbox
Input: Mailbox 0-3 Group: Mailbox Frame Type: Mailbox 3 Frame Type: Data Mailbox
Input: Mailbox 4-7 Group: Mailbox Frame Type: Mailbox 4 Frame Type: Data Mailbox
Input: Mailbox 4-7 Group: Mailbox Frame Type: Mailbox 5 Frame Type: Data Mailbox
Input: Mailbox 4-7 Group: Mailbox Frame Type: Mailbox 6 Frame Type: Data Mailbox
Input: Mailbox 4-7 Group: Mailbox Frame Type: Mailbox 7 Frame Type: Data Mailbox
Input: Mailbox 8-11 Group: Mailbox Frame Type: Mailbox 8 Frame Type: Data Mailbox
Input: Mailbox 8-11 Group: Mailbox Frame Type: Mailbox 9 Frame Type: Data Mailbox
Input: Mailbox 8-11 Group: Mailbox Frame Type: Mailbox 10 Frame Type: Data Mailbox
Input: Mailbox 8-11 Group: Mailbox Frame Type: Mailbox 11 Frame Type: Data Mailbox
Input: Mailbox 12-15 Group: Mailbox Frame Type: Mailbox 12 Frame Type: Data Mailbox
Input: Mailbox 12-15 Group: Mailbox Frame Type: Mailbox 13 Frame Type: Data Mailbox
Input: Mailbox 12-15 Group: Mailbox Frame Type: Mailbox 14 Frame Type: Data Mailbox
Input: Mailbox 12-15 Group: Mailbox Frame Type: Mailbox 15 Frame Type: Data Mailbox
Input: Mailbox 16-19 Group: Mailbox Frame Type: Mailbox 16 Frame Type: Data Mailbox
Input: Mailbox 16-19 Group: Mailbox Frame Type: Mailbox 17 Frame Type: Data Mailbox
Input: Mailbox 16-19 Group: Mailbox Frame Type: Mailbox 18 Frame Type: Data Mailbox
Input: Mailbox 16-19 Group: Mailbox Frame Type: Mailbox 19 Frame Type: Data Mailbox
Input: Mailbox 20-23 Group: Mailbox Frame Type: Mailbox 20 Frame Type: Data Mailbox
Input: Mailbox 20-23 Group: Mailbox Frame Type: Mailbox 21 Frame Type: Data Mailbox
Input: Mailbox 20-23 Group: Mailbox Frame Type: Mailbox 22 Frame Type: Data Mailbox
Input: Mailbox 20-23 Group: Mailbox Frame Type: Mailbox 23 Frame Type: Data Mailbox
Input: Mailbox 24-27 Group: Mailbox Frame Type: Mailbox 24 Frame Type: Data Mailbox
Input: Mailbox 24-27 Group: Mailbox Frame Type: Mailbox 25 Frame Type: Data Mailbox
Input: Mailbox 24-27 Group: Mailbox Frame Type: Mailbox 26 Frame Type: Data Mailbox
Input: Mailbox 24-27 Group: Mailbox Frame Type: Mailbox 27 Frame Type: Data Mailbox
Input: Mailbox 28-31 Group: Mailbox Frame Type: Mailbox 28 Frame Type: Data Mailbox
Input: Mailbox 28-31 Group: Mailbox Frame Type: Mailbox 29 Frame Type: Data Mailbox
Input: Mailbox 28-31 Group: Mailbox Frame Type: Mailbox 30 Frame Type: Data Mailbox
Input: Mailbox 28-31 Group: Mailbox Frame Type: Mailbox 31 Frame Type: Data Mailbox
Input: Receive FIFO: Receive ID 1: Mask: 0x1FFFFFFF
Input: Receive FIFO: Receive ID 2: Mask: 0x1FFFFFFF
Input: Mailbox 0-3 Group: Mailbox 0-3 Group Mask: 0
Input: Mailbox 4-7 Group: Mailbox 4-7 Group Mask: 0x1FFFFFFF
Input: Mailbox 8-11 Group: Mailbox 8-11 Group Mask: 0x1FFFFFFF
Input: Mailbox 12-15 Group: Mailbox 12-15 Group Mask: 0x1FFFFFFF
Input: Mailbox 16-19 Group: Mailbox 16-19 Group Mask: 0x1FFFFFFF
Input: Mailbox 20-23 Group: Mailbox 20-23 Group Mask: 0x1FFFFFFF
Input: Mailbox 24-27 Group: Mailbox 24-27 Group Mask: 0x1FFFFFFF
Input: Mailbox 28-31 Group: Mailbox 28-31 Group Mask: 0x1FFFFFFF
Interrupts: Interrupt Priority Level: Priority 12
Interrupts: Transmit FIFO Interrupt Mode: Every Message
Instance "g_sci_spi7 SPI (r_sci_spi)"
Name: g_sci_spi7
Channel: 7
Operating Mode: Master
Clock Phase: Data sampling on odd edge, data variation on even edge
Clock Polarity: Low when idle
Mode Fault Error: Disable
Bit Order: MSB First
Callback: sci_spi7_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 8000000
Bitrate Modulation: Disabled
Instance "g_transfer5 Transfer (r_dtc) SCI7 TXI (Transmit data empty)"
Name: g_transfer5
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Fixed
Source Address Mode: Incremented
Repeat Area (Unused in Normal Mode): Source
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI7 TXI (Transmit data empty)
Instance "g_transfer6 Transfer (r_dtc) SCI7 RXI (Received data full)"
Name: g_transfer6
Mode: Normal
Transfer Size: 1 Byte
Destination Address Mode: Incremented
Source Address Mode: Fixed
Repeat Area (Unused in Normal Mode): Destination
Destination Pointer: NULL
Source Pointer: NULL
Interrupt Frequency: After all transfers have completed
Number of Transfers: 0
Number of Blocks (Valid only in Block Mode): 0
Number of Transfer Descriptors: 1
Activation Source: SCI7 RXI (Received data full)
Instance "g_external_irq10 External IRQ (r_icu)"
Name: g_external_irq10
Channel: 10
Trigger: Both Edges
Digital Filtering: Disabled
Digital Filtering Sample Clock (Only valid when Digital Filtering is Enabled): PCLKB / 64
Callback: irq_callback
Pin Interrupt Priority: Priority 12
Instance "g_external_irq11 External IRQ (r_icu)"
Name: g_external_irq11
Channel: 11
Trigger: Both Edges
Digital Filtering: Disabled