forked from arduino/ArduinoCore-renesas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathra_cfg.txt
1367 lines (1275 loc) · 65.1 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)"
R7FA4M1AB3CNE
part_number: R7FA4M1AB3CNE
rom_size_bytes: 262144
ram_size_bytes: 32768
data_flash_size_bytes: 8192
package_style: QFN
package_pins: 48
RA4M1
series: 4
RA4M1 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: 1.90 V
OFS1 register settings: HOCO Oscillation Enable: HOCO oscillation is enabled after reset
Use Low Voltage Mode: Disabled
MPU: Enable or disable PC Region 0: Disabled
MPU: PC0 Start: 0x00FFFFFC
MPU: PC0 End: 0x00FFFFFF
MPU: Enable or disable PC Region 1: Disabled
MPU: PC1 Start: 0x00FFFFFC
MPU: PC1 End: 0x00FFFFFF
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
Main Oscillator Wait Time: 262144 cycles
ID Code Mode: Unlocked (Ignore ID)
ID Code (32 Hex Characters): FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
RA Common
Main stack size (bytes): 0x400
Heap size (bytes): 0x2000
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 0Hz
HOCO 48MHz
PLL Div /4
PLL Mul x12
Clock Src: HOCO
ICLK Div /1
PCLKA Div /1
PCLKB Div /2
PCLKC Div /1
PCLKD Div /1
FCLK Div /2
CLKOUT Src: SUBCLK
CLKOUT Div /1
UCLK Src: HOCO
Pin Configurations
R7FA4M1AB3CNE.pincfg -> g_bsp_pin_cfg
AVCC0 42 ADC_AVCC0 - - - - - - - - IO "Read only" -
AVSS0 43 ADC_AVSS0 - - - - - - - - IO "Read only" -
P000 48 ADC0_AN00 A0 - - "Analog mode" - - "ADC0: AN00; CTSU0: TS21; IRQ0: IRQ06; OPAMP0: AMP+" - IO - -
P001 47 ADC0_AN01 A1 - - "Analog mode" - - "ADC0: AN01; CTSU0: TS22; IRQ0: IRQ07; OPAMP0: AMP-" - IO - -
P002 46 ADC0_AN02 A2 - - "Analog mode" - - "ADC0: AN02; IRQ0: IRQ02; OPAMP0: AMPO" - IO - -
P010 45 ADC_VREFH0 - - - "Analog mode" - - "ADC: VREFH0; ADC0: AN05; CTSU0: TS30" - IO - -
P011 44 GPIO LED_RED Low None "Output mode (Initial Low)" - None "ADC: VREFL0; ADC0: AN06; CTSU0: TS31; IRQ0: IRQ15" - IO - -
P012 41 GPIO TX_LED Medium - "Output mode (Initial High)" - None "ADC: VREFH; ADC0: AN07" - IO - -
P013 40 GPIO LED_BLUE Low - "Output mode (Initial Low)" - None "ADC: VREFL; ADC0: AN08" - IO - -
P014 39 ADC0_AN09 A3 - - "Analog mode" - - "ADC0: AN09; DAC120: DA" - IO - -
P015 38 IRQ0_IRQ07 FUSB_INT - IRQ7 "IRQ mode" - None "ADC0: AN10; CTSU0: TS28; IRQ0: IRQ07" - IO - -
P100 36 ADC0_AN22 A5_SCL Low None "Peripheral mode" CMOS None "ADC0: AN22; AGT0: AGTIO; CMP0: CMPIN0; GPT5: GTIOCB; IIC1: SCL; IRQ0: IRQ02; KINT0: KRM0; POEG0: GTETRG; SCI0: RXD_MISO; SCI0: SCL; SCI1: SCK; SLCDC0: VL1; SPI0: MISO" - IO - -
P101 35 ADC0_AN21 A4_SDA Low None "Peripheral mode" CMOS None "ADC0: AN21; AGT0: AGTEE; CMP0: CMPREF0; GPT5: GTIOCA; IIC1: SDA; IRQ0: IRQ01; KINT0: KRM1; POEG1: GTETRG; SCI0: SDA; SCI0: TXD_MOSI; SCI1: CTS_RTS_SS; SLCDC0: VL2; SPI0: MOSI" - IO - -
P102 34 SCI2_TXD_MOSI D1_TX Low - "Peripheral mode" CMOS None "ADC0: ADTRG; ADC0: AN20; AGT0: AGTO; CAN0: CRX; CMP0: CMPIN1; GPT2: GTIOCB; KINT0: KRM2; OPS0: GTOWLO; SCI0: SCK; SCI2: SDA; SCI2: TXD_MOSI; SLCDC0: VL3; SPI0: RSPCK" - IO - -
P103 33 GPT2_GTIOCA D5 Low - "Peripheral mode" CMOS None "ADC0: AN19; CAN0: CTX; CMP0: CMPREF1; GPT2: GTIOCA; KINT0: KRM3; OPS0: GTOWUP; SCI0: CTS_RTS_SS; SLCDC0: VL4; SPI0: SSL0" - IO - -
P104 32 GPT1_GTIOCB D3 Low IRQ1 "Peripheral mode" CMOS None "CTSU0: TS13; GPT1: GTIOCB; IRQ0: IRQ01; KINT0: KRM4; POEG1: GTETRG; SCI0: RXD_MISO; SCI0: SCL; SLCDC0: COM0; SPI0: SSL1" - IO - -
P108 25 SPI1_SSL0 D10 Low - "Peripheral mode" CMOS None "DEBUG0: SWDIO; DEBUG0: TMS; GPT0: GTIOCB; OPS0: GTOULO; SCI9: CTS_RTS_SS; SPI1: SSL0" - IO - -
P109 26 SPI1_MOSI D11_MOSI Low - "Peripheral mode" CMOS None "CAN0: CTX; CGC0: CLKOUT; CTSU0: TS10; DEBUG0: SWO; DEBUG0: TDO; GPT1: GTIOCA; OPS0: GTOVUP; SCI1: SCK; SCI9: SDA; SCI9: TXD_MOSI; SLCDC0: SEG23; SPI1: MOSI" - IO - -
P110 27 SPI1_MISO D12_MISO Low None "Peripheral mode" CMOS None "CAN0: CRX; CMP0: VCOUT; DEBUG0: TDI; GPT1: GTIOCB; IRQ0: IRQ03; OPS0: GTOVLO; SCI2: CTS_RTS_SS; SCI9: RXD_MISO; SCI9: SCL; SLCDC0: SEG24; SPI1: MISO" - IO - -
P111 28 SPI1_RSPCK D13_SCK Low None "Peripheral mode" CMOS None "CTSU0: TS12; GPT3: GTIOCA; IRQ0: IRQ04; SCI2: SCK; SCI9: SCK; SLCDC0: CAPH; SPI1: RSPCK" - IO - -
P112 29 GPT3_GTIOCB D6 Low - "Peripheral mode" CMOS None "CTSU0: TSCAP; GPT3: GTIOCB; SCI1: SCK; SCI2: SDA; SCI2: TXD_MOSI; SLCDC0: CAPL; SPI1: SSL0" - IO - -
P200 21 - - - - Disabled - - "IRQ0: NMI" - None - -
P201 20 GPIO RX_LED Low - "Output mode (Initial High)" CMOS None - - IO - -
P206 18 IRQ0_IRQ00 D2 - IRQ0 "IRQ mode" - None "CTSU0: TS01; IIC1: SDA; IRQ0: IRQ00; OPS0: GTIU; SCI0: RXD_MISO; SCI0: SCL; SLCDC0: SEG12; SPI1: SSL1; USBFS0: VBUSEN" - IO - -
P212 8 CGC0_EXTAL - - None "Peripheral mode" CMOS None "AGT1: AGTEE; CGC0: EXTAL; GPT0: GTIOCB; IRQ0: IRQ03; POEG1: GTETRG; SCI1: RXD_MISO; SCI1: SCL" - IO - -
P213 7 CGC0_XTAL - - None "Peripheral mode" CMOS None "CGC0: XTAL; GPT0: GTIOCA; IRQ0: IRQ02; POEG0: GTETRG; SCI1: SDA; SCI1: TXD_MOSI" - IO - -
P214 5 CGC0_XCOUT - - - "Peripheral mode" - - "CGC0: XCOUT" - IO - -
P215 4 CGC0_XCIN - - - "Peripheral mode" - - "CGC0: XCIN" - IO - -
P300 24 GPT0_GTIOCA D9 Low - "Peripheral mode" CMOS None "DEBUG0: SWCLK; DEBUG0: TCK; GPT0: GTIOCA; OPS0: GTOUUP; SPI1: SSL1" - IO - -
P301 23 SCI2_RXD_MISO D0_RX Low None "Peripheral mode" CMOS None "AGT0: AGTIO; CTSU0: TS09; GPT4: GTIOCB; IRQ0: IRQ06; OPS0: GTOULO; SCI2: RXD_MISO; SCI2: SCL; SCI9: CTS_RTS_SS; SLCDC0: COM5; SLCDC0: SEG01; SPI1: SSL2" - IO - -
P302 22 GPT4_GTIOCA D8 Low None "Peripheral mode" CMOS None "CTSU0: TS08; GPT4: GTIOCA; IRQ0: IRQ05; OPS0: GTOUUP; SCI2: SDA; SCI2: TXD_MOSI; SLCDC0: COM6; SLCDC0: SEG02; SPI1: SSL3" - IO - -
P400 1 GPT6_GTIOCA D4 Low None "Peripheral mode" CMOS None "AGT1: AGTIO; CAC0: CACREF; CTSU0: TS20; GPT6: GTIOCA; IIC0: SCL; IRQ0: IRQ00; SCI0: SCK; SCI1: SCK; SLCDC0: SEG04; SSI: AUDIO_CLK" - IO - -
P407 12 USBFS0_VBUS USB_VBUS Medium - "Peripheral mode" CMOS None "ADC0: ADTRG; AGT0: AGTIO; CTSU0: TS03; IIC0: SDA; RTC0: RTCOUT; SCI0: CTS_RTS_SS; SLCDC0: SEG11; SPI1: SSL3; USBFS0: VBUS" - IO - -
P408 11 USBFS0_ID USB_ID MediumIIC None "Peripheral mode" CMOS None "CTSU0: TS04; GPT5: GTIOCB; IIC0: SCL; IRQ0: IRQ07; OPS0: GTOWLO; SCI1: CTS_RTS_SS; SCI9: RXD_MISO; SCI9: SCL; SLCDC0: SEG10; USBFS0: ID" - IO - -
P409 10 GPT5_GTIOCA D7 Low None "Peripheral mode" CMOS None "CTSU0: TS05; GPT5: GTIOCA; IRQ0: IRQ06; OPS0: GTOWUP; SCI9: SDA; SCI9: TXD_MOSI; SLCDC0: SEG09; USBFS0: EXICEN" - IO - -
P500 37 USBFS0_VBUSEN VBUS_HOST_EN Low - "Peripheral mode" CMOS None "ADC0: AN16; AGT0: AGTOA; CMP0: CMPREF1; GPT2: GTIOCA; OPS0: GTIU; SLCDC0: SEG34; USBFS0: VBUSEN" - IO - -
P914 15 USBFS0_USBDP - - - "Peripheral mode" - - "USBFS0: USBDP" - IO - -
P915 14 USBFS0_USBDM - - - "Peripheral mode" - - "USBFS0: USBDM" - IO - -
RES 19 - - - - - - - - - - "Read only" -
VBAT 2 - - - - - - - - - - "Read only" -
VCC 9 - - - - - - - - - - "Read only" -
VCC 30 - - - - - - - - - - "Read only" -
VCCUSB 16 USBFS0_VCCUSB - - - - - - - - IO "Read only" -
VCCUSBLDO 17 USBFS0_VCCUSBLDO - - - - - - - - IO "Read only" -
VCL 3 - - - - - - - - - - "Read only" -
VSS 6 - - - - - - - - - - "Read only" -
VSS 31 - - - - - - - - - - "Read only" -
VSSUSB 13 USBFS0_VSSUSB - - - - - - - - IO "Read only" -
User Events
User Event Links
Module "I/O Port (r_ioport)"
Parameter Checking: Default (BSP)
Module "ADC (r_adc)"
Parameter Checking: Default (BSP)
Module "I2C Master (r_iic_master)"
Parameter Checking: Default (BSP)
DTC on Transmission and Reception: Disabled
10-bit slave addressing: Disabled
Module "SPI (r_spi)"
Parameter Checking: Default (BSP)
Enable Support for using a transfer API: Enabled
Enable Transmitting from RXI Interrupt: Disabled
Module "Transfer (r_dtc)"
Parameter Checking: Default (BSP)
Linker section to keep DTC vector table: .fsp_dtc_vector_table
Module "Watchdog (r_wdt)"
Parameter Checking: Default (BSP)
Register Start NMI Support: Disabled
Module "External IRQ (r_icu)"
Parameter Checking: Default (BSP)
Module "Low Power Modes (r_lpm)"
Parameter Checking: Default (BSP)
Standby Limit: Disabled
Module "USB PCDC (r_usb_pcdc)"
Bulk In Pipe: USB PIPE1
Bulk Out Pipe: USB PIPE2
Interrupt Out Pipe: USB PIPE6
Module "USB (r_usb_basic)"
Parameter Checking: Default (BSP)
PLL Frequency: Not Supported
CPU Bus Access Wait Cycles: Not Supported
Battery Charging: Not Supported
Power IC Shutdown Polarity: Active High
Dedicated Charging Port (DCP) Mode: Not Supported
Notifications for SET_INTERFACE/SET_FEATURE/CLEAR_FEATURE: Enabled
Double Buffering: Enabled
Continuous Transfer Mode: Not Supported
LDO Regulator: Disabled
DMA Support: Disabled
DMA Source Address: DMA Disabled
DMA Destination Address: DMA Disabled
USB Compliance Test mode: Disabled
USB TPL table name: NULL
Module "DAC (r_dac)"
Parameter Checking: Default (BSP)
Module "Realtime Clock (r_rtc)"
Parameter Checking: Default (BSP)
Set Source Clock in Open: Disabled
Module "Timer, General PWM (r_gpt)"
Parameter Checking: Default (BSP)
Pin Output Support: Enabled with Extra Features
Write Protect Enable: Disabled
Clock Source: PCLKD
Module "Timer, Low-Power (r_agt)"
Parameter Checking: Default (BSP)
Pin Output Support: Disabled
Pin Input Support: Disabled
Module "UART (r_sci_uart)"
Parameter Checking: Default (BSP)
FIFO Support: Enable
DTC Support: Enable
Flow Control Support: Enable
RS-485 Support: Disable
Module "I2C Master (r_sci_i2c)"
Parameter Checking: Default (BSP)
DTC on Transmission and Reception: Enabled
10-bit slave addressing: Disabled
Module "SPI (r_sci_spi)"
Parameter Checking: Default (BSP)
DTC Support: Enabled
Module "Event Link Controller (r_elc)"
Parameter Checking: Default (BSP)
Module "Transfer (r_dmac)"
Parameter Checking: Default (BSP)
Module "I2C Slave (r_iic_slave)"
Parameter Checking: Default (BSP)
Module "Key Matrix (r_kint)"
Parameter Checking: Default (BSP)
Module "Data Operation Circuit (r_doc)"
Parameter Checking: Default (BSP)
Module "Clock Generation Circuit (r_cgc)"
Parameter Checking: Default (BSP)
Module "CAN (r_can)"
Parameter Checking: Default (BSP)
FIFO Support: Disabled
Module "Virtual EEPROM on Flash (rm_vee_flash)"
Parameter Checking: Default (BSP)
Reference Data Support: Disabled
Refresh Buffer Size: 32
Module "Flash (r_flash_lp)"
Parameter Checking: Default (BSP)
Code Flash Programming: Disabled
Data Flash Programming: Enabled
HAL
Instance "g_ioport I/O Port (r_ioport)"
Name: g_ioport
Port 1 ELC Trigger Source: Disabled
Port 2 ELC Trigger Source: Disabled
Port 3 ELC Trigger Source: Disabled
Port 4 ELC Trigger Source: Disabled
Port B ELC Trigger Source: Disabled
Port C ELC Trigger Source: Disabled
Port D ELC Trigger Source: Disabled
Port E ELC Trigger Source: Disabled
Pin Configuration Name: g_bsp_pin_cfg
Instance "g_adc0 ADC (r_adc)"
General: Name: g_adc0
General: Unit: 0
General: Resolution: 14-Bit
General: Alignment: Right
General: Clear after read: On
General: Mode: Single Scan
General: Double-trigger: Disabled
Input: Channel Scan Mask (channel availability varies by MCU): Channel 0, Channel 1, Channel 2, Channel 9, Channel 21, Channel 22
Input: Group B Scan Mask (channel availability varies by MCU):
Interrupts: Normal/Group A Trigger: Software
Interrupts: Group B Trigger: Disabled
Interrupts: Group Priority (Valid only in Group Scan Mode): Group A cannot interrupt Group B
Input: Add/Average Count: Disabled
Input: Reference Voltage control: AVCC0/AVSS0
Input: Addition/Averaging Mask (channel availability varies by MCU and unit):
Input: Sample and Hold: Sample and Hold Channels (Available only on selected MCUs):
Input: Sample and Hold: Sample Hold States (Applies only to channels 0, 1, 2): 24
Input: Window Compare: Window Mode: Disabled
Input: Window Compare: Event Output: OR
Input: Window Compare: Window A: Enable: Disabled
Input: Window Compare: Window A: Channels to compare (channel availability varies by MCU and unit):
Input: Window Compare: Window A: Channel comparison mode (channel availability varies by MCU and unit):
Input: Window Compare: Window A: Lower Reference: 0
Input: Window Compare: Window A: Upper Reference: 0
Input: Window Compare: Window B: Enable: Disabled
Input: Window Compare: Window B: Channel to compare (channel availability varies by MCU and unit): Channel 0
Input: Window Compare: Window B: Comparison mode: Less Than or Outside Window
Input: Window Compare: Window B: Lower Reference: 0
Input: Window Compare: Window B: Upper Reference: 0
Interrupts: Callback: NULL
Interrupts: Scan End Interrupt Priority: Disabled
Interrupts: Scan End Group B Interrupt Priority: Disabled
Interrupts: Window Compare A Interrupt Priority: Disabled
Interrupts: Window Compare B Interrupt Priority: Disabled
Extra: ADC Ring Buffer: Not Supported
Instance "g_i2c_master0 I2C Master (r_iic_master)"
Name: g_i2c_master0
Channel: 1
Rate: Standard
Rise Time (ns): 120
Fall Time (ns): 120
Duty Cycle (%): 50
Slave Address: 0x00
Address Mode: 7-Bit
Timeout Mode: Short Mode
Timeout during SCL Low: Enabled
Callback: i2c_callback
Interrupt Priority Level: Priority 12
Instance "g_transfer13 Transfer (r_dtc) IIC1 TXI (Transmit data empty)"
Name: g_transfer13
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
Activation Source: IIC1 TXI (Transmit data empty)
Instance "g_transfer14 Transfer (r_dtc) IIC1 RXI (Receive data full)"
Name: g_transfer14
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
Activation Source: IIC1 RXI (Receive data full)
Instance "g_spi0 SPI (r_spi)"
Name: g_spi0
Channel: 1
Receive Interrupt Priority: Priority 12
Transmit Buffer Empty Interrupt Priority: Priority 12
Transfer Complete Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
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: spi_callback
SPI Mode: Clock Synchronous Operation
Full or Transmit Only Mode: Full Duplex
Slave Select Polarity: Active Low
Select SSL(Slave Select): SSL0
MOSI Idle State: MOSI Idle Value Fixing Disable
Parity Mode: Disabled
Byte Swapping: Disable
Bitrate: 16000000
Clock Delay: 1 Clock
SSL Negation Delay: 1 Clock
Next Access Delay: 1 Clock
Instance "g_transfer9 Transfer (r_dtc) SPI1 TXI (Transmit buffer empty)"
Name: g_transfer9
Mode: Normal
Transfer Size: 2 Bytes
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
Activation Source: SPI1 TXI (Transmit buffer empty)
Instance "g_transfer10 Transfer (r_dtc) SPI1 RXI (Receive buffer full)"
Name: g_transfer10
Mode: Normal
Transfer Size: 2 Bytes
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
Activation Source: SPI1 RXI (Receive buffer full)
Instance "g_wdt0 Watchdog (r_wdt)"
Name: g_wdt0
Timeout: 16,384 Cycles
Clock Division Ratio: PCLK/8192
Window Start Position: 100% (Window Position Not Specified)
Window End Position: 0% (Window Position Not Specified)
Reset Control: Reset Output
Stop Control: WDT Count Disabled in Low Power Mode
NMI Callback: NULL
Instance "g_external_irq0 External IRQ (r_icu)"
Name: g_external_irq0
Channel: 0
Trigger: Rising
Digital Filtering: Disabled
Digital Filtering Sample Clock (Only valid when Digital Filtering is Enabled): PCLK / 64
Callback: NULL
Pin Interrupt Priority: Priority 12
Instance "g_external_irq1 External IRQ (r_icu)"
Name: g_external_irq1
Channel: 1
Trigger: Rising
Digital Filtering: Disabled
Digital Filtering Sample Clock (Only valid when Digital Filtering is Enabled): PCLK / 64
Callback: NULL
Pin Interrupt Priority: Priority 12
Instance "g_lpm0 Low Power Modes (r_lpm)"
General: Name: g_lpm0
General: Low Power Mode: Sleep mode
General: Output port state in standby and deep standby: Not Available
Standby Options: Wake Sources:
Standby Options: Snooze Request Source: RXD0 falling edge
Standby Options: Snooze End Sources:
Standby Options: DTC state in Snooze Mode: Disabled
Standby Options: Snooze Cancel Source: None
Deep Standby Options: I/O Port Retention: Not Available
Deep Standby Options: Power-Supply Control: Not Available
Deep Standby Options: Cancel Sources:
Deep Standby Options: Cancel Edges:
Instance "g_pcdc0 USB PCDC (r_usb_pcdc)"
Name: g_pcdc0
Instance "g_basic0 USB (r_usb_basic)"
Name: g_basic0
USB Mode: Peri mode
USB Speed: Full Speed
USB Module Number: USB_IP0 Port
USB Device Class: Peripheral Communications Device Class
USB Descriptor: g_usb_descriptor
USB Compliance Callback: NULL
USBFS Interrupt Priority: Priority 12
USBFS Resume Priority: Priority 12
USBFS D0FIFO Interrupt Priority: Priority 12
USBFS D1FIFO Interrupt Priority: Priority 12
USBHS Interrupt Priority: Not Supported
USBHS D0FIFO Interrupt Priority: Not Supported
USBHS D1FIFO Interrupt Priority: Not Supported
USB RTOS Callback: NULL
USB Callback Context: NULL
Instance "g_dac0 DAC (r_dac)"
Name: g_dac0
Channel: 0
Synchronize with ADC: Disabled
Data Format: Right Justified
Output Amplifier: Disabled
Charge Pump (Requires MOCO active): Disabled
Internal Output: Enabled by default
ELC Trigger Source: Disabled
Instance "g_rtc0 Realtime Clock (r_rtc)"
Name: g_rtc0
Clock Source: LOCO
Frequency Comparision Value (LOCO): 255
Automatic Adjustment Mode: Enabled
Automatic Adjustment Period: 10 Seconds
Adjustment Type (Plus-Minus): NONE
Error Adjustment Value: 0
Callback: rtc_callback
Alarm Interrupt Priority: Priority 12
Period Interrupt Priority: Priority 12
Carry Interrupt Priority: Priority 12
Instance "g_timer0 Timer, General PWM (r_gpt)"
General: Name: g_timer0
General: Channel: 0
General: Mode: PWM
General: Period: 490
General: Period Unit: Hertz
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: Enabled
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: Enabled
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: Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time: 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_timer1 Timer, General PWM (r_gpt)"
General: Name: g_timer1
General: Channel: 1
General: Mode: PWM
General: Period: 490
General: Period Unit: Hertz
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: Enabled
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: Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time: 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: PWM
General: Period: 490
General: Period Unit: Hertz
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: 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: 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: Enabled
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: Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time: 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_timer3 Timer, General PWM (r_gpt)"
General: Name: g_timer3
General: Channel: 3
General: Mode: PWM
General: Period: 490
General: Period Unit: Hertz
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: 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: Enabled
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: Dead Time Count Up (Raw Counts): 0
Extra Features: Dead Time: 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_timer10 Timer, Low-Power (r_agt)"
General: Name: g_timer10
General: Channel: 0
General: Mode: Periodic
General: Period: 10
General: Period Unit: Milliseconds
Output: Duty Cycle Percent (only applicable in PWM mode): 50
General: Count Source: PCLKB
Output: AGTOA Output: Disabled
Output: AGTOB Output: Disabled
Output: AGTO Output: Disabled
Input: Measurement Mode: Measure Disabled
Input: Input Filter: No Filter
Input: Enable Pin: Enable Pin Not Used
Input: Trigger Edge: Trigger Edge Rising
Interrupts: Callback: timer10_callback
Interrupts: Underflow Interrupt Priority: Priority 12
Instance "g_uart1 UART (r_sci_uart)"
General: Name: g_uart1
General: Channel: 0
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: uart_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_transfer0 Transfer (r_dtc) SCI0 TXI (Transmit data empty)"
Name: g_transfer0
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
Activation Source: SCI0 TXI (Transmit data empty)
Instance "g_transfer1 Transfer (r_dtc) SCI0 RXI (Receive data full)"
Name: g_transfer1
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
Activation Source: SCI0 RXI (Receive data full)
Instance "g_uart2 UART (r_sci_uart)"
General: Name: g_uart2
General: Channel: 1
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: uart_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_transfer2 Transfer (r_dtc) SCI1 TXI (Transmit data empty)"
Name: g_transfer2
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
Activation Source: SCI1 TXI (Transmit data empty)
Instance "g_transfer3 Transfer (r_dtc) SCI1 RXI (Received data full)"
Name: g_transfer3
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
Activation Source: SCI1 RXI (Received data full)
Instance "g_i2c1 I2C Master (r_sci_i2c)"
Name: g_i2c1
Channel: 0
Slave Address : 0x00
Address Mode: 7-Bit
Rate: Standard
SDA Output Delay (nano seconds): 300
Noise filter setting: Use clock signal divided by 1 with noise filter
Bit Rate Modulation: Enable
Callback: sci_i2c_callback
Interrupt Priority Level: Priority 12
RX Interrupt Priority Level [Only used when DTC is enabled]: Priority 12
Instance "g_transfer5 Transfer (r_dtc) SCI0 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
Activation Source: SCI0 TXI (Transmit data empty)
Instance "g_transfer6 Transfer (r_dtc) SCI0 RXI (Receive 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
Activation Source: SCI0 RXI (Receive data full)
Instance "g_i2c3 I2C Master (r_sci_i2c)"
Name: g_i2c3
Channel: 2
Slave Address : 0x00
Address Mode: 7-Bit
Rate: Standard
SDA Output Delay (nano seconds): 300
Noise filter setting: Use clock signal divided by 1 with noise filter
Bit Rate Modulation: Enable
Callback: sci_i2c_callback
Interrupt Priority Level: Priority 12
RX Interrupt Priority Level [Only used when DTC is enabled]: Priority 12
Instance "g_transfer11 Transfer (r_dtc) SCI2 TXI (Transmit data empty)"
Name: g_transfer11
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
Activation Source: SCI2 TXI (Transmit data empty)
Instance "g_transfer12 Transfer (r_dtc) SCI2 RXI (Received data full)"
Name: g_transfer12
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
Activation Source: SCI2 RXI (Received data full)
Instance "g_spi1 SPI (r_sci_spi)"
Name: g_spi1
Channel: 0
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_spi_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 1000000
Bitrate Modulation: Enabled
Instance "g_transfer15 Transfer (r_dtc) SCI0 TXI (Transmit data empty)"
Name: g_transfer15
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
Activation Source: SCI0 TXI (Transmit data empty)
Instance "g_transfer16 Transfer (r_dtc) SCI0 RXI (Receive data full)"
Name: g_transfer16
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
Activation Source: SCI0 RXI (Receive data full)
Instance "g_spi2 SPI (r_sci_spi)"
Name: g_spi2
Channel: 1
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_spi_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 1000000
Bitrate Modulation: Enabled
Instance "g_transfer17 Transfer (r_dtc) SCI1 TXI (Transmit data empty)"
Name: g_transfer17
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
Activation Source: SCI1 TXI (Transmit data empty)
Instance "g_transfer18 Transfer (r_dtc) SCI1 RXI (Received data full)"
Name: g_transfer18
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
Activation Source: SCI1 RXI (Received data full)
Instance "g_spi3 SPI (r_sci_spi)"
Name: g_spi3
Channel: 2
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_spi_callback
Receive Interrupt Priority: Priority 12
Transmit Interrupt Priority: Priority 12
Transmit End Interrupt Priority: Priority 12
Error Interrupt Priority: Priority 12
Bitrate: 1000000
Bitrate Modulation: Enabled
Instance "g_transfer19 Transfer (r_dtc) SCI2 TXI (Transmit data empty)"
Name: g_transfer19
Mode: Normal
Transfer Size: 1 Byte