MC Protocol Serial C++ 0.2.3
MC protocol serial library for MCU-oriented environments
Loading...
Searching...
No Matches
Wiring Guide

Audience: users wiring a Linux host or MCU board to a Mitsubishi serial module.

This repository validates protocol behavior, not every cable pinout. Use this page as the high-level wiring plan, then confirm the connector pin numbers against your actual module and adapter hardware.

Verified Host-side Path

Known-good real-hardware validation used this path:

Linux host
-> USB to RS-232C adapter
-> RS-232C cable
-> RJ71C24-R2 serial port

Important points:

  • Use an actual RS-232C adapter, not a bare 3.3V TTL UART.
  • RS-232C and MCU UART logic levels are different.
  • Do not copy protocol settings from an old sample or old log without checking the current validation matrix.
  • For the exact current settings that were validated on each target, use ../validation/reports/HARDWARE_VALIDATION.md.

MCU-side Path

For ESP32-C3, RP2040, or similar boards, do not wire TX/RX directly to the PLC RS-232C connector.

Use this shape instead:

MCU UART (3.3V TTL)
-> TTL / RS-232C level shifter such as MAX3232
-> RS-232C cable
-> RJ71C24-R2 serial port

Important points:

  • The MCU side is TTL UART.
  • The PLC side is RS-232C.
  • A level shifter is required between them.
  • RS-485 DE/RE control is not needed for the validated RS-232C setup.
  • The MCU sample projects keep simple example defaults. Treat those as firmware sample defaults, not as the authority for the validated target settings.

Before Power-up

Confirm these before sending frames:

  • TX, RX, and GND are mapped correctly through the level shifter.
  • The MCU board and the PLC side share a valid signal ground path through the interface.
  • USB debug serial and PLC serial are not accidentally using the same UART pins.
  • The PLC port is configured for the exact serial settings you plan to use.

Recommended Bring-up Order

  1. Confirm the target settings in HARDWARE_VALIDATION.md
  2. Prove the line with a read-only identification check
  3. Prove a small read-only device range
  4. Add write traffic only against a safe test area

Related Pages