1.. _rzt2m_starterkit:
2
3Renesas Starter Kit+ for RZ/T2M
4###############################
5
6Overview
7********
8
9The Renesas Starter Kit+ for RZ/T2M is an evaluation and development kit for the RZ/T2M MPU.
10The board is powered through a 5V input via a DC Power Jack or USB Type-C Connector.
11
12.. figure:: rzt2m_starterkit.png
13   :width: 800px
14   :align: center
15   :alt: Starter Kit+ for RZ/T2M
16
17   Starter Kit+ for RZ/T2M (Credit: Renesas)
18
19Hardware
20********
21
22The board utilizes the SoC of part no. R9A07G075M24GBG, with 2MB of RAM.
23
24It has several on-board memory components:
25
26* SDRAM (256MBit),
27* NOR Flash (256MBit),
28* Octa Flash (512MBit),
29* HyperRAM (512Mbit),
30* QSPI Serial Flash (512Mbit),
31* I2C EEPROM (32Kbit).
32
33The communication interfaces include:
34
35* Debug interfaces (J-Link, MIPI-10, MIPI-20),
36* Ethernet,
37* CAN,
38* USB,
39* RS485,
40* UART,
41* I2C,
42* SPI.
43
44Supported Features
45==================
46
47+-----------+------------+-------------------------------------+
48| Interface | Controller | Driver/Component                    |
49+===========+============+=====================================+
50| NVIC      | on-chip    | nested vector interrupt controller  |
51+-----------+------------+-------------------------------------+
52| SYSTICK   | on-chip    | systick                             |
53+-----------+------------+-------------------------------------+
54| PINCTRL   | on-chip    | pinctrl                             |
55+-----------+------------+-------------------------------------+
56| UART      | on-chip    | serial                              |
57+-----------+------------+-------------------------------------+
58| GPIO      | on-chip    | gpio                                |
59+-----------+------------+-------------------------------------+
60
61Other hardware features are not currently supported by the port.
62
63Connections and IOs
64===================
65
66By default, the board is configured for use with:
67
68* UART0 connected to the USB serial port (pins K18, K19),
69* UART3 connected to the PMOD Header (J25, pins H16, G20),
70* LEDs defined as ``led0``, ``led1``, ``led2`` and ``led3``,
71
72The Zephyr console uses UART0.
73
74Programming and Debugging
75*************************
76
77Debugging
78=========
79
80Connect to the board using the J-Link On-board USB connector.
81Use ``west`` to start the debug server:
82
83.. code-block:: console
84
85    west debugserver
86
87Connect GDB to the server and load an application:
88
89.. code-block::
90
91    target remote :2331
92    file build/zephyr/zephyr.elf
93    load
94
95References
96**********
97
98.. target-notes::
99
100.. _RZT2M Product page: https://www.renesas.com/us/en/products/microcontrollers-microprocessors/rz-mpus/rzt2m-high-performance-multi-function-mpu-realizing-high-speed-processing-and-high-precision-control
101