The GS20 spares you the lookup table: every parameter address follows from the parameter number with one small calculation, and two fixed registers run the drive. This page gives the formula, the two control words, and a bench procedure that confirms both against the keypad before a PLC is anywhere near the panel.
Windows 10/11 · RS-485 adapter · No PLC needed to test
Most drive documentation makes you hunt through a table to find the Modbus address of a parameter. The DURApulse GS20 does not need one: the address follows directly from the parameter number, and the manual shows the arithmetic.
Take the group number as the high byte and the parameter number as the low byte, both in hex. Acceleration time 1 is P01.12: group 01 gives 0100, parameter 12 is 0x0C, and the register is 0x010C — 268 in decimal.
Once you have that, every parameter in the drive is reachable without a lookup table, which also means a mistyped group number lands you on a completely unrelated parameter. Reading before writing is not optional here.
register = (group × 0x100) + parameter, both in hex. P01.12 → 0x0100 + 0x0C = 0x010C = 268 decimal.
These are documented in the GS20 user manual’s serial communications chapter. They sit outside the parameter space, at addresses that will look familiar to anyone who has worked with Delta-based drives.
| What it is | Hex | Decimal | Purpose |
|---|---|---|---|
| Control Word 1 | 0x2000 | 8192 | Run, stop and related commands |
| Control Word 2 | 0x2001 | 8193 | Commanded frequency |
The drive also offers block transfer registers, configured through the P09 group, which let a master collect scattered parameters in a single request instead of six. On a slow serial line with several drives that difference is worth having. Protocol selection between Modbus RTU and ASCII is made in P09.04.
Because the parameter addresses come from a formula, the fastest way to build confidence is to read a parameter whose value you can see on the keypad, and confirm the two match.
Read a parameter, compare it with the keypad, then write the control words — from a laptop, before the PLC program exists. Free for 14 days.
Windows 10/11 · Modbus RTU, ASCII and TCP · One-time license
We use Google Analytics cookies to see how the site is used. You can accept or decline — declining keeps analytics off. See our Privacy Policy.