Welcome to the Industrial Automation website!

NameDescriptionContent
XING-Automation
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

OMRON C200H PLC Troubleshooting and Programming Essentials

F: | Au:FAN | DA:2026-04-21 | 590 Br: | 🔊 点击朗读正文 ❚❚ | Share:

OMRON C200H PLC Troubleshooting and Programming Essentials: From Memory Architecture to Field Practice

In the development of industrial automation, the OMRON C200H series programmable logic controller (PLC) has become the core of countless factory control systems due to its modular rack structure, rich instruction set, and extremely high reliability. Although the C200H series has gradually withdrawn from the mainstream market, it remains a classic equipment that engineers must face in a large number of old production lines, renovation projects, and emergency repair scenarios. This article will systematically summarize the technical points of C200H (CPU01-E/03-E/11-E) from hardware configuration, memory area, programming skills to fault diagnosis, providing a complete technical manual for on-site maintenance and programming debugging.


System Overview: Rack Structure and Hardware Composition

C200H adopts a rack mounted structure, mainly including:

CPU rack: Install CPU units, power units, and up to 10 I/O units or special I/O units.

Expansion I/O rack: Up to 2 can be connected, and each expansion rack can also install up to 10 units, communicating with the CPU rack through I/O connection cables.

Slave rack: Used in remote I/O systems, controlled by the remote I/O master unit.

The CPU unit model determines the system capability: CPU01-E/03-E does not support SYSMAC LINK/NET Link, while CPU1-E supports these advanced networks. Memory units (RAM/EEPROM/EEPROM) provide program storage (UM) and data storage (DM), with battery powered RAM units able to retain data after power failure.


Memory Region Detailed Explanation: Each Address is the Key to Diagnosis

The memory of C200H is divided into multiple data areas, and understanding the purpose of each area is the foundation for programming and troubleshooting.

1. IR zone (internal relay, letter 000-235)

I/O words: Words 000-029 are assigned to slots on CPU racks and expansion racks, with each slot corresponding to a word. The input bit (such as 00000) reflects the status of the external input signal, and the output bit (such as 00200) controls the external load.

Job position: Words not assigned to I/O (such as 030-235) can be used as internal relays, but their status is lost after power failure.

Special I/O units and slave allocation: Unit numbers 0-9 occupy characters 100-199 (special I/O) or 050-099 (slave).

2. SR area (special relay, letters 236-255)

The SR area contains system flags and control bits, and is the primary source of information for fault diagnosis. Key positions include:

25308: Low battery flag (RAM cell battery voltage drops).

25309: Cycle time error flag (cycle exceeding 100ms).

25310: I/O verification error flag (actual installed unit does not match registered I/O table).

25313: Always ON symbol.

25314: Constant OFF symbol.

25315: First cycle flag (ON only during the first scan cycle after the start of operation).

25400-25502: Clock pulses (1 minute, 0.02 seconds, 0.1 seconds, 0.2 seconds, 1.0 seconds).

25503: Instruction execution error flag (ER), ON when operand exceeds range or indirect DM address does not exist.

25504-25507: Arithmetic flags (CY, GR, EQ, LE) used for comparison and operation instructions.

25215: Output OFF position, set ON to force all output units to power off.

3. AR area (auxiliary relay, letters AR00-AR27)

The multiple digits in the AR area are dedicated and remain in a power-off state. Key position:

AR0000-0009: Special I/O unit or PC Link unit error flag.

AR0014/0015: Remote I/O master station 0/1 error flag.

AR0200-0204: Slave rack 0-4 error flag.

AR2404 (CPU1-E): CPU unit low battery flag.

AR26/27: Maximum/current cycle time (BCD format).

AR18-AR21 (CPU11-E): Calendar/clock data (year, month, day, hour, minute, second, week).

4. DM area (data storage, words DM0000-DM1999)

DM0000-0999: User readable/writable, power off hold.

DM0969-0999 (CPU11-E): Error History Area, capable of storing the last 10 errors (error code, time, date), in conjunction with AR0713-0715 control.

DM1000-1999: Special I/O unit parameter area (read-only, requires programming device to write).

5. HR area (holding relay, HR00-HR99)

Power off hold, used for data that needs to be saved in state.

6. LR area (link relay, LR00-LR63)

Used for data exchange in PC Link or SYSMAC Link systems; Can be used as a workspace when not in use.

7. TC area (timer/counter, TC000-TC511)

Each TC number can be defined as a timer (TIM/TIMH) or a counter (CNT/CNTR). As a bit operand, access completion flag; Accessing the current value (PV) as a word operand.

8. TR area (temporary relay, TR0-TR7)

Only used for temporarily storing execution conditions in branch ladder diagrams and cannot be used across instruction blocks.

Keystone Programming Core: From Basic Instructions to Structured Design

The ladder diagram programming of C200H shares the same logic as relay control, and understanding the scanning mechanism is key.

1. Basic instructions

LD/LD NOT: Read normally open/normally closed contacts to start a logical line.

AND/AND NOT: Connect normally open/normally closed contacts in series.

OR/OR NOT: Parallel normally open/normally closed contacts.

OUT/OUT NOT: Output coil.

AND LD/OR LD: Series/parallel logic block.

2. Timers and counters

TIM: 0.1 second unit, set value 0-99.9 seconds. When the execution condition is ON, subtract 1 and complete the flag ON when it reaches zero.

TIMH (15): 0.01 second high-precision timer (note the impact of cycle time).

CNT: Countdown counter, counting input decreases by 1 every OFF → ON, reset input returns to set value when ON.

CNTR (12): Reversible counter, with up/down input controlled separately, cycle counting (0 → SV becomes 0 and sets completion flag, SV → 0 becomes SV and sets flag).

Important limitation: Each TC number can only be defined once. The timer will reset in the interlock zone (IL-ILC) or when power is off, while the counter will not.

3. Interlocking and jumping

IL (02)/ILC (03): Interlock. When IL executes the condition OFF, the middle output coil is all OFF, the timer is reset, and the counter/hold bit/KEEP bit remains in the state.

JMP (04)/JME (05): Jump. When the jump number is 01-99, the skipped instruction is not executed and the state is maintained; Skip to the next JME00 when the jump number is 00, but the search will cause a slight increase in the cycle.

Step instruction (STEP (08)/SNXT (09))

Used to implement sequential control. Each step is defined by a control bit, and during step execution, all internal outputs and timers are reset, but counters, KEEP bits, and shift registers remain. After completing the step, it will automatically reset to the previous step and start the next step. Supports three structures: sequential, branching, and parallel.

5. Subroutines and Interrupts (CPU1-E)

SBS (91) calls subroutines (SBN (92)/RET (93)), which can be nested up to 16 layers.

INT (89) controls scheduling interrupts and sets the time interval (0.01-99.99 seconds) for timed interrupts (subroutine 99).


Programming console operation: a powerful tool for on-site debugging

The C200H programming console is the most commonly used debugging tool on site, and the following are the key operating procedures:

1. Start preparation

After power on, it displays "Password!". Press CLR → MONTR → CLR to enter.

Press SHIFT+1 to turn on/off the button beep sound (BZ displayed).

2. Memory clearing

In Program mode, press CLR → PLAY/SET → NOT → REC/RESET → MONTR to clear all memory. You can choose to retain HR/AR, CNT, or DM regions.

3. I/O table registration

Register the current actual I/O configuration by pressing CLR → FUN → SHIFT → CH → CHG → 97 → 13 → WHITE. After registration, when the actual unit does not match the registry, it will report "I/O VER ERR".

4. Program input

Set address (e.g. 00000) → Enter command (e.g. LD 00000) → Press Write → Enter operand (e.g. 00001) → Press Write.

Function command: Press FUN+Function code+Write. Add NOT input differential command (@).

5. Program inspection

Press CLR → SRCH, select check level (0: all errors; 1: Class A/B; 2: Only Class A). The check will stop at the first error, press SRCH to continue.

6. Monitoring and Enforcement

Bit/word monitoring: After entering the address, press MONTR. It can monitor 6 addresses simultaneously and display cursor movement.

Force Set/Reset: In monitoring mode, press PLAY/SET to temporarily force ON, and press REC/RESET to force OFF. Press SHIFT+PLAY/SET to lock the force (display S or R), press NOT to cancel.

Force clear all: Press CLR → PLAY/SET → REC/RESET → NOT.

Modify data: Press CHG on the monitoring word, enter the new value, and then press WRITE.

7. Tape backup

Save program: Press EXT → 0 → Write to enter file number → Start address → End address → Start the recorder → Press SHIFT+REC/RESET within 5 seconds.

Recovery program: Similar, press SHIFT+PLAY/SET.

Troubleshooting: A systematic approach from indicator lights to error codes

C200H provides self diagnostic function to quickly locate problems through CPU panel indicator lights and SR/AR area markings.

1. Meaning of CPU indicator light

Meaning of indicator light status

POWER is on and the power supply is normal

RUN lights up and the program is running

ALARM/ERROR flashing non fatal errors (such as I/O validation errors, low battery, etc.) FAL)

ALARM/ERROR constantly on for fatal errors (such as CPU exception, memory error, FALS), RUN light off, output completely disconnected

OUT INHIBIT: SR25215 (output OFF position) is ON, and all outputs are forcibly turned off

2. Common error messages and countermeasures

Initialization error (RUN does not light up when powered on)

Reasons for the message and countermeasures

WAITING FOR START INPUT CPU power supply unit startup input terminal not short circuited, short circuited startup terminal

WAITING FOR REMOTE I/O Remote I/O Power or Terminal Resistance Problem Check Slave Power and Terminal Resistance

Non fatal error (ALARM flashing, running continues)

Reason and countermeasures for message FAL number

FAL Error 01-99 program executed FAL (06) to check user-defined FAL conditions

Cycle Time Overrun F8: If the cycle time exceeds 100ms, optimize the program or reduce the scanning load

I/O VER ERR E7: The I/O table does not match the actual unit. Perform I/O table verification and re register

Remote I/O ERROR B0/B1 communication fault check for the line between the master and slave stations

Special I/O Error D0 Special I/O Unit Error Check Unit Number (AR00), Reset (AR01)

BATTERY ERROR F7 Backup battery voltage low Replace battery (C200H-BAT09)

Fatal error (ALARM constantly on, RUN off)

Reason and countermeasures for message FAL number

CPU ERROR: No watchdog timeout (default 130ms). Check if the program is in a dead loop, or use WDT (94) to extend it

Memory Error F1: Check for missing, checksum errors, or illegal instructions in the memory unit installation and execute program checks

NO END INST F0 program does not have END (01). Add END (01) at the end of the program

I/O BUS ERROR C0-C2: Check for bus faults between CPU and I/O unit. Connect the rack cable and tighten the unit

TOO MANY UNITS E1 Special I/O Unit Number Duplicate, or SYSMAC LINK/NET Link Operation Level Conflict Check Unit Number Setting (0-9 Unique), Check Operation Level

FALS ERROR 01-99/9F program has executed FALS (07) or watchdog timeout. Check according to the FAL number; 9F indicates a period exceeding 130ms

3. Error History (CPU11-E)

DM0969-DM0999 stores the last 10 error records (error code, time, date). Enable AR0715 (Error History Enable Bit), and AR0713 determines whether to overwrite it. It can be reset through AR0714.

4. Application of arithmetic flags in programs

Compare the results of instruction CMP (20) and output them to GR (25505), EQ (25506), and LE (25507).

These flags must be used immediately after CMP, as END (01) will clear them.

Example: Compare HR09 and IR010, output according to different result settings.


Cycle time and I/O response time: key to timing sensitive applications

The cycle time of C200H includes: supervised processing+program execution+I/O refresh+peripheral services+link unit services (if any). Typical values: The supervision time of CPU01-E/03-E is 2.6ms, with a refresh time of 70 μ s for each input word and 40 μ s for each output word.

When the cycle time exceeds 100ms, SR25309 ON, And the 0.1 second clock pulse may not be accurate.

The maximum cycle time is stored in AR26, and the current cycle is in AR27.

Use SCAN (18) to set the minimum cycle time (CPU1-E).

The I/O response time (from input signal change to output action) depends on the input ON delay+cycle time x 1 or 2+output ON delay. If the input arrives before I/O refresh, the response is the fastest (one cycle); If it arrives after refreshing, it will take two cycles.

  • SIGMATEK Krauss Maffei PC301-K 01-310-301-K Industrial PC
  • SIGMATEK SDD310-23 VARAN Servo Drive
  • SIGMATEK CDM 163 and CIC 011 C-DIAS Input Modules
  • SIGMATEK MDP 101-1 Power Module
  • SIGMATEK CM5V020 Wiring Circuit with CTMS020
  • SIGMATEK CCP521 C-DIAS Processor Module
  • SIGMATEK MDP 101-K Power Module
  • SIGMATEK ETEK C-IPC 733MHz VIA Eden 7000
  • SIGMATEK DCP 643 DIAS PLC CPU Module
  • SIGMATEK TAE121 12-200-121 Operator Terminal
  • Sigmatek TMS012-T Injection Moulding Technology Module
  • Sigmatek MDD 121-1 Controller
  • Sigmatek CDM167 Module
  • Sigmatek DCP082 DIAS Central Unit
  • Sigmatek ETT731 Built-In Terminal Touch
  • Sigmatek CCP521 C-DIAS Processor Module
  • Sigmatek Krauss Maffei PC301-K Control Cabinet PC
  • Sigmatek CIC-21 C-DIAS CAN Module
  • Sigmatek CIO-011 Multi I O Module
  • Sigmatek 01-450-152D C-IPC 152 Industrial PC
  • SIGMATEK 01-450-024 C-IPC 128MB VIA 733MHz
  • SIGMATEK CCL-081 C-DIAS Processor Module
  • SIGMATEK CP311 20-004-311 Module
  • SIGMATEK EP00000262 SLIDES MIDI I O-V3 Controller
  • SIGMATEK TMS012-T Slides Technology Module
  • SIGMATEK MDD111-1 Drive Axis Module
  • SIGMATEK MDP101-1 PLC Module
  • SIGMATEK CP111 S-DIAS Processor Module
  • DEMAG ErgoControl Sigmatek NC4 Display Unit
  • SIGMATEK DCP642 Module
  • Sigmatek Demag NC4 9617.067.03 Control Module
  • Sigmatek DCP 643 Central Processing Unit
  • Sigmatek VI 021 S-SLIDES VARAN Interface Module
  • Sigmatek SDD340-46 Servo Drive 14kVA
  • Sigmatek DSI021 Slide Siemens Interface
  • Sigmatek CCL912 C-SLIDES CPU PSU Module
  • Sigmatek ETV1521 VARAN Control Panel
  • Sigmatek ET322 Operator LCD Terminal
  • Sigmatek MDD1111 DIAS Drive Module
  • Sigmatek CAM123 Module
  • SIGMATEK CP111 VARAN Ethernet Controller
  • SigmaTek MDD 111 Axle Module
  • SIGMATEK CIO013 C-DIAS I O Module
  • SIGMATEK AKM52K-ANC2GBB0 Servomotor 640VDC
  • SIGMATEK ETT321 01-230-321 Touch Screen
  • SIGMATEK NC4Kompakt 01-250-010-D Safety Controller
  • SIGMATEK CIO011 C-DIAS Multi I O Module
  • SIGMATEK MDD 121-1 Drive Axis Module
  • SIGMATEK CDM163 Control Module
  • Sigma-Tek 4000HR-3 Heading Reference Directional Gyro
  • Sigmatek DIAS DAI 883 Analog Input Module
  • Sigmatek 0332.554.03 Printed Circuit Board Card
  • Sigma Tek 5000B-36 Attitude Gyro 8130
  • Demag NC4 0332.554.03 Sigmatek Control Board
  • Sigmatek IPC Pentium 300 CF Industrial PC
  • Sigmatek MDP 102 PLC Module
  • Sigmatek DTO163 Digital Output Module
  • Sigmatek PCT151 Touch IPC 15 Panel and I-PC C300
  • Sigmatek CCL911 CD Processor Module
  • Sigmatek SCP011 S-DIAS Safety CPU Module
  • Sigmatek SE051 Network Splitter Module
  • Sigmatek CIO011 C-DIAS I O Module
  • Sigmatek SE051 Ethernet Splitter
  • Sigmatek CCL911 CD Processor Module
  • Sigmatek SDD310-4 DIAS Drive 14kVA
  • Sigmatek CTMS020 C-DIAS Technology Module
  • Sigmatek CTMS020 CD Technology Module
  • Sigmatek CTO167 C-SLIDES Digital Output Module
  • Sigmatek C-IPC 152 Industrial PC
  • Sigmatek SDD310-4 SLIDES Drive 310
  • SIGMATEK MDP 102-1 DIAS Power Module
  • SIGMATEK SCP111 S-DIAS Safety CPU Industrial
  • SIGMATEK CAO081 Analog Output Module
  • SIGMATEK DCC080L Control Module
  • SIGMATEK MDP101-1 Power Module
  • SIGMATEK SCP111 S-DIAS Safety CPU
  • SIGMATEK PC325-K Industrial PC
  • SIGMATEK ETT 731 Operator Terminal
  • SIGMATEK DSV011 SLIDES Hub Module 05-023-011
  • SIGMATEK 12-780-012 R8-IPC Industrial Computer
  • Sigmatek SE051 Ethernet Splitter
  • Sigmatek DAI 883 DIAS Analog Module
  • Sigma Tek 4000B-30 Directional Gyro
  • Sigmatek CP112 S-DIAS Processor Module
  • Sigmatek SDD310 DIAS Drive
  • Sigmatek SDD120-23 DIAS Drive 14kVA
  • Sigmatek C-IPC 152 Industrial PC
  • Sigmatek CIV513 VARAN Control Module
  • Sigmatek DCP 082 Processor Module
  • Sigmatek C-IPC Industrial PC 01-450-023 GEB
  • SIGMATEK PC572 Operating Terminal
  • SIGMATEK DCC041 DIAS Compact Controller HW 6.10
  • SIGMATEK C-IPC 152 1GB Celeron M440 Controller
  • SIGMATEK 01-310-322-K PC322-K Industrial PC
  • SIGMATEK TAE732-P Touch Screen Operator Panel
  • SIGMATEK 01-018-100 Control Module
  • SIGMATEK DDI-164 Digital Input Module
  • Sigma-Tek 5000B-36 Artificial Horizon
  • SIGMATEK 12-780-012 R8-IPC Geode LX800 Computer
  • SIGMATEK CTMS 020 Servo Drive
  • Sigmatek MDD121-1 Controller
  • Sigmatek ETV1021-L VARAN Terminal
  • Sigmatek DST022 DIAS Module
  • Sigmatek CCP512-K C-Dias Processor Module
  • Sigmatek SRO 021 Relay Output Module
  • Sigmatek SDI 101 Digital Input Module
  • Sigmatek IPC 221 Industrial PC
  • Sigmatek DNC-305 Digital Input Module
  • Sigmatek SDD335 DIAS Drive
  • Sigmatek C-IPC Industrial Controller
  • SIGMATEK 01-450-031 C-IPC 256MB LX800 Computer
  • SIGMATEK SDD310-3 DIAS Drive 310
  • SIGMATEK DSV011 SLIDES Hub Module 05-023-011
  • SIGMATEK CNC031 CD Analog Module 12-011-031
  • SIGMATEK 01-450-031 C-IPC 256MB LX800
  • SIGMATEK 01-450-026 C-IPC VIA 733MHz Controller
  • SIGMATEK DCP-643 DIAS CPU Module with DKL-003
  • SIGMATEK MDD111-L DIAS Drive Axis Module
  • SIGMATEK SDD310-23-L DIAS Drive 310
  • SIGMATEK Viscotec ETV0551 Touch Panel
  • SIGMATEK PC321K Industrial Computer
  • SIGMATEK MDP 102-1 SLIDES Power Module
  • SIGMATEK TAE-151 12-200-151 Light Terminal
  • SIGMATEK CP102 20-004-102P6995B HMI Panel
  • SIGMATEK CAM-123 12-017-123-C Analog Mixing Module
  • SIGMATEK DCC041 DIAS Compact Controller
  • SIGMATEK DVI021 and DKL015 DIAS Power Module
  • SIGMATEK SDD340-46 SDD Series Servo Drive