In the field of industrial automation, the programming and debugging software of programmable logic controllers (PLCs) serves as a bridge between engineers and hardware systems. OMRON's SYSMAC Support Software (SSS) is such a powerful tool designed specifically for C-series PLCs. According to its official operating manual W248-E1-1A, SSS not only supports basic programming tasks, but also integrates a series of advanced functions such as system configuration, memory management, and network communication. This article aims to deeply interpret the core content of the manual, systematically explain the key technologies and practical methods of SSS in the operation of C-series PLC, and provide a professional and detailed technical reference for technical personnel.
Part 1: SSS Software Infrastructure and Operating Modes
1.1 Software positioning and applicable objects
SSS software runs on IBM PC/AT or compatible computers and is specifically designed for programming and maintaining SYSMAC C-series PLCs (such as C200H, C1000H, C500, etc.). The manual clearly states that the users of this software should have knowledge of electrical systems, usually the personnel responsible for installing, designing, and managing FA systems. The strength of SSS lies in its provision of a complete solution from project creation to system debugging.
1.2 Operation mode division: offline and online
The core operational logic of SSS revolves around two modes:
Offline operation: This is the main environment for program development, data structure design, I/O table configuration, and other work. Without connecting to the PLC, engineers can fully write, edit, and save ladder diagrams or mnemonic programs in SSS, and pre configure DM data areas, I/O tables, etc. All operation results are saved in the system workspace or disk of the computer.
Online operation: When physically connected to the PLC, SSS enters online mode. At this point, the software can perform program upload/download, real-time monitoring of PLC operating status, online editing and debugging, reading/writing data areas, etc. Online operation is a crucial step in verifying program functionality and diagnosing system issues.
Part 2: Offline Operations - The Foundation of Project Development
2.1 Programming Environment Configuration
Before starting any programming work, it is necessary to perform correct system settings, which is a prerequisite for ensuring compatibility between the program and the target PLC. The core settings include:
PC model selection: In the system settings menu, the target PLC model (such as C200H, C1000H, C500, etc.) must be clearly specified. The manual specifically states that changing the PC model may clear the programs and data in the current workspace, and caution should be exercised when operating.
Clear Memory: Before writing a new program, it is recommended to use the "Clear Memory" operation to ensure that the system workspace is clean. This operation will clear user programs, I/O comments, etc.
Display mode setting: SSS supports multiple program display modes to adapt to different programming habits. The main modes include:
UnaAnnotated ladder diagram: focuses on instruction logic and displays concisely.
Annotated ladder diagram: Display I/O annotations next to the ladder diagram for easy understanding.
Mnemonic (function key): Use function keys to input commands, suitable for quick programming.
Mnemonic (typing): Directly typing command mnemonics, in line with advanced user habits.
2.2 Practical application of ladder diagram programming
Ladder diagram is the most intuitive way in PLC programming. The ladder diagram editing function of SSS is very powerful, and its core lies in the concept of "instruction blocks".
Instruction block: An instruction block refers to a series of logical lines starting from the left bus and ending with the output instruction on the right. A single instruction block can contain up to 22 logical lines, which helps with on-screen management.
Programming: In "write mode", engineers can input various logical conditions (normally open/normally closed contacts, OR, AND) and output instructions (OUT, TIM, CNT, etc.) through function keys. For special instructions with function codes, they can be inputted through the FUN function.
Editing operations: SSS provides a variety of editing tools, including inserting/deleting rows and columns, drawing/deleting vertical and horizontal lines, and reversing the normally open/normally closed states of contacts. For example, the F8 key can connect horizontal lines, the F6 key can draw vertical lines, and/or the F9 key can quickly switch the logical state of contacts.
Annotation system: In order to improve the readability of the program, SSS supports three types of annotations:
I/O annotation: Directly attached to the input/output bit address, with a length of up to 16 characters.
Instruction annotation: attached to the output instruction on the right side to explain its function, with a length of up to 32 characters.