kobol-wiki/docs/helios64/uext.md

44 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

Helios64 has one UEXT (Universal-Extension-Connector) header which exposes 3 serial communication interfaces into a single header:
* I2C
* SPI
* RS232 (UART)
![P2 Location](/helios64/img/uext/uext.jpg)
## Pinout Table
![P2 Pinout](/helios64/img/uext/uext_pinout.jpg)
Below is the full pinout of the UEXT header:
| PIN | Port | Remarks |
|-----|------|-------------|
| 1 | 3.3V | |
| 2 | GND | |
| 3 | TXD (UART) | |
| 4 | RXD (UART) | |
| 5 | SCL (I2C) | |
| 6 | SDA (I2C) | |
| 7 | MISO (SPI) | |
| 8 | MOSI (SPI) | |
| 9 | SCK (SPI) | |
|10 | SSEL (SPI) | |
!!! Warning
Be careful with the header polarity when connecting.
## SPI & I2C
Refer to the respective pages directly:
- [SPI](/helios64/hardware/)
- [I2C](/helios64/i2c/)
## RS232 (UART)
2020-05-13 11:27:14 +02:00
The UART exposed on the UEXT header is UART Controller 0 from the RK3399 SoC. The primary purpose of this UART is to provide serial communication between SoC and Device connected to the UEXT port.
2020-05-13 11:27:14 +02:00
!!! Note
If you are looking for SoC serial console you should refer to [USB-C Console Mode](/helios64/usb/#serial-console).