Features:
- Processor: Broadcom BCM2712 (64-bit Quad-Core Arm Cortex-A76, 2.4GHz, 512KB L2 cache, 2MB L3 cache)
- RAM: 4GB LPDDR4X
- Connectivity:
- Gigabit Ethernet (with PoE support)
- Dual-band 802.11ac Wi-Fi (2.4GHz/5GHz)
- Bluetooth 5.0, BLE
- USB 3.0 x 2 (5Gbps), USB 2.0 x 2
- Micro HDMI x 2 (supports 4Kp60)
- MicroSD card slot
- 40-pin GPIO header
- 2 × 4-lane MIPI DSI/CSI interfaces
- USB Type-C (5V/5A input)
- Power button
- Real-Time Clock (RTC), powered by external battery
- PCIe 2.0 x1 interface
- UART header for debugging
What's On Board:

How to Use:
- Preparation: SD card and card reader
- Download the System: Click here to download
- Format the SD Card: Use
SDFormatter.exe
- Program the Image: Use
Win32DiskImager.exe
- Start Raspberry Pi 5: Insert the SD card and connect a 5V 5A Type-C adapter
- Connect Peripherals: Attach mouse, keyboard, and display
UART Login:
The Raspberry Pi 5 includes a dedicated UART connector for debugging (up to 921,600bps), configurable via EEPROM. Provides early boot and Linux console access.

UART connector includes 3 pins.
RTC (Real-Time Clock):
- Powered using J5 (BAT) connector with external backup battery
- Runs while powered and retains time when powered off

Official RTC Documentation
Software Debug:
- Default RTC device:
/dev/rtc0
- Use
date
to view system time
Hwclock Commands:
sudo hwclock -w
: Set hardware clock from system clock
sudo hwclock -s
: Set system clock from hardware clock
sudo hwclock --set --date="9/8/2023 16:45:05"
: Set RTC time manually
sudo hwclock -r
: Read RTC time
sudo hwclock --verbose
: Show detailed RTC info
Auto Wakeup (Low-Power Mode):
sudo -E rpi-eeprom-config --edit
# Add the following lines:
POWER_OFF_ON_HALT=1
WAKE_ON_GPIO=0
# Test auto wakeup in 10 minutes:
echo +600 | sudo tee /sys/class/rtc/rtc0/wakealarm
sudo halt
RTC Battery Charging Configuration:
# Edit config.txt
sudo nano /boot/firmware/config.txt
# Add:
dtparam=rtc_bbat_vchg=3000000
The value 3000000 (3V) disables charging when voltage exceeds 3V, and enables trickle charge below 3V.
Dimensions:

Resources:
Features:
- Processor: Broadcom BCM2712 (64-bit Quad-Core Arm Cortex-A76, 2.4GHz, 512KB L2 cache, 2MB L3 cache)
- RAM: 4GB LPDDR4X
- Connectivity:
- Gigabit Ethernet (with PoE support)
- Dual-band 802.11ac Wi-Fi (2.4GHz/5GHz)
- Bluetooth 5.0, BLE
- USB 3.0 x 2 (5Gbps), USB 2.0 x 2
- Micro HDMI x 2 (supports 4Kp60)
- MicroSD card slot
- 40-pin GPIO header
- 2 × 4-lane MIPI DSI/CSI interfaces
- USB Type-C (5V/5A input)
- Power button
- Real-Time Clock (RTC), powered by external battery
- PCIe 2.0 x1 interface
- UART header for debugging
What's On Board:

How to Use:
- Preparation: SD card and card reader
- Download the System: Click here to download
- Format the SD Card: Use
SDFormatter.exe
- Program the Image: Use
Win32DiskImager.exe
- Start Raspberry Pi 5: Insert the SD card and connect a 5V 5A Type-C adapter
- Connect Peripherals: Attach mouse, keyboard, and display
UART Login:
The Raspberry Pi 5 includes a dedicated UART connector for debugging (up to 921,600bps), configurable via EEPROM. Provides early boot and Linux console access.

UART connector includes 3 pins.
RTC (Real-Time Clock):
- Powered using J5 (BAT) connector with external backup battery
- Runs while powered and retains time when powered off

Official RTC Documentation
Software Debug:
- Default RTC device:
/dev/rtc0
- Use
date
to view system time
Hwclock Commands:
sudo hwclock -w
: Set hardware clock from system clock
sudo hwclock -s
: Set system clock from hardware clock
sudo hwclock --set --date="9/8/2023 16:45:05"
: Set RTC time manually
sudo hwclock -r
: Read RTC time
sudo hwclock --verbose
: Show detailed RTC info
Auto Wakeup (Low-Power Mode):
sudo -E rpi-eeprom-config --edit
# Add the following lines:
POWER_OFF_ON_HALT=1
WAKE_ON_GPIO=0
# Test auto wakeup in 10 minutes:
echo +600 | sudo tee /sys/class/rtc/rtc0/wakealarm
sudo halt
RTC Battery Charging Configuration:
# Edit config.txt
sudo nano /boot/firmware/config.txt
# Add:
dtparam=rtc_bbat_vchg=3000000
The value 3000000 (3V) disables charging when voltage exceeds 3V, and enables trickle charge below 3V.
Dimensions:

Resources: