This page explains the differences between P, M, D, C, T, and R memory, address notation, memory-region settings, where memory is used in a project, and special-bit memory.
About screenshots: Screenshots use the Korean user interface. Button positions, icons, and keyboard shortcuts are the same.
Unlike Arduino programs, PLC programs use P, M, D, C, T, and R memory. Arduino code can allocate variables from the remaining SRAM after the PLC memory regions have been allocated.
Memory holds input states, internal conditions, calculation results, timer values, and other data while the program runs. Ladder logic and Arduino C code in MPINO Studio 2 can share and use this memory.
A basic address consists of a region letter followed by a zero-based number. For example, M10 is the eleventh address in the M region, and D0 is the first address in the D region.
| Region | Unit | Storage form | Value range |
|---|---|---|---|
P | BIT | Digital input or output state on the board | 0 or 1 |
M | BIT | Internal BIT memory | 0 or 1 |
D | WORD | Signed internal WORD memory | -32,768 to 32,767 |
C | WORD | Counter value (signed internal WORD memory) | -32,768 to 32,767 |
T | WORD | Current timer value (signed internal WORD memory) | -32,768 to 32,767 |
R | Floating Point (32 bits) | Internal Floating Point memory (real-number memory) | Approximately -3.4028235E38 to +3.4028235E38 |
Ladder logic and Arduino code use the same storage for P, M, D, C, T, and R memory. A value written on one side can be read from the same address on the other side.
In Arduino code, use the ladder address name directly or write it in array form. Both forms refer to the same memory.
M0 ↔ Arduino code M0 or M[0]D0 ↔ Arduino code D0 or D[0]R0 ↔ Arduino code R0 or R[0]void loop() { M0 = true; // Sets the M0 bit contact in the ladder to ON. D0 = 120; // Shares the D0 integer between ladder and Arduino code. R0 = 23.5f; // Shares the R0 floating-point value between both sides. ladderLoop(); // Runs the ladder logic with the values stored above. }
A value changed by ladder logic can be read in Arduino code after ladderLoop() finishes. Within one scan, read and write order follows the position of the ladderLoop() call inside loop().
I/O mapping caution: The P region and C addresses mapped to board functions are synchronized with physical I/O during a ladder scan. Before sharing these regions with Arduino code, check the address and I/O direction under Settings → Ladder Pin Map Settings.
P address caution: P addresses can be reviewed and changed in Board Pin Editing. Their I/O directions and physical terminals follow the definition of the board selected for the project.
R value error caution: Because of the limits of 32-bit floating-point arithmetic,0.1 + 0.2may be stored as approximately0.30000001instead of exactly0.3. This characteristic must be considered on controllers that use IEEE 754 32-bit floating point.
The MPINO-8A4R(T)-S board uses these default memory counts:
You can change the number of addresses used under Settings → Memory Region Settings. (Shortcut: Ctrl + Shift + M)
| Region | Default count | Default address range |
|---|---|---|
P | 64 | P0 to P63 |
M | 1,024 | M0 to M1023 |
D | 200 | D0 to D199 |
C | 100 | C0 to C99 |
T | 128 | T0 to T127 |
R | 50 | R0 to R49 |
Memory Region Settings: Blank P, M, D, C, T, and R fields use the board defaults. Entering a value changes the count for that project. The bottom of the dialog shows estimated SRAM use together with total SRAM.
Do not confuse a count with the last address. Numbering begins at zero, so 200 D addresses run from D0 through D199.
On MPINO-8A4R(T)-S, analog inputs, NTC temperature inputs, and PWM are connected to C0 through C10 memory.
You can change the mapped memory under Settings → Ladder Pin Map Settings.
Analog/PWM output caution: When memory is mapped to an analog or PWM output, the value at the mapped address drives that output. You therefore cannot useanalogWrite-related functions for the same output in Arduino code. To use ananalogWrite-related function, clear Use for that output under Settings → Ladder Pin Map Settings.
| C address | Board function | MCU pin |
|---|---|---|
C0 to C5 | Analog inputs | A0 to A5 |
C6 to C7 | NTC temperature inputs | A6 to A7 |
C8 to C10 | PWM outputs | D21 to D23 |
C11 to C99 | Remaining C region not directly assigned above | Confirm the intended use before selecting an address |
Critical check: If you chooseC0throughC10as ordinary counter addresses on this board, their data can overlap with the board functions that use the same addresses. Before assigning a counter, check Settings → Ladder Pin Map Settings and Settings → Used Memory.
Mapped addresses vary by board and can also be changed by the user. Check them under Settings → Ladder Pin Map Settings.
Data width is the number of bits read or stored at one time. It determines the available value range and memory use.
| Width | Size | Signed range | Typical use |
|---|---|---|---|
| BIT | 1 bit | 0 or 1 | Contacts, coils, and ON/OFF states |
| BYTE | 8 bits | -128 to 127 | Small integers |
| WORD | 16 bits | -32,768 to 32,767 | General integers and the basic values of D, C, and T |
| DWORD | 32 bits | -2,147,483,648 to 2,147,483,647 | Large integers beyond the WORD range |
The R region also uses 32 bits, but it stores a floating-point value, not a DWORD integer. Do not treat R memory as DWORD access simply because both use 32 bits.
When selecting a width, consider the largest value after calculations. A value incremented every 1 ms for one day reaches 86,400,000 and therefore exceeds the WORD range.
Read memory addresses by starting with the simplest form and adding the required elements one at a time.
M0: BIT address 0 in the M region.D0: WORD address 0 in the D region.D0.1: the second bit in the D0 WORD. Bit numbering starts at zero.WM1.2: the third bit in WM1, the WORD view of the M region. It refers to the same bit as M18.This diagram shows the memory structure for bits, bytes, words, double words, and floating-point values.
The P and M regions group individual BIT addresses in sets of 8, 16, or 32 for BYTE, WORD, and DWORD views. The lowest address is the least significant bit, so WM0.0 refers to M0, and WM1.3 refers to M19.
Each D, C, or T address is one WORD. Two consecutive WORDs form a DWORD: DD0 combines D0 and D1, while DD1 combines D2 and D3. C and T use the same rule through forms such as DC0 and DT0.
Select Settings → Used Memory, or press Ctrl+Shift+L.
Inspecting this map before reassigning an address or reducing a memory-region size helps prevent duplicate use and out-of-range references.
Special-bit memory beginning with @ is updated automatically by MPINO Studio 2. It can be used in ladder bit contacts.
| Format | Operation | Example |
|---|---|---|
@ON | Always ON | Keeps a bit contact true |
@OFF | Always OFF | Keeps a bit contact false |
@<ms> | Turns ON for one scan once each specified time boundary | @100 is ON for one scan every 100 ms |
@F<ms> | Repeats ON for the specified duration, then OFF for the same duration | @F1000 repeats 1 second ON and 1 second OFF |
@ON and @OFF are case-insensitive, so @on and @off are also valid.
@100 still produces one ON scan when the program scan crosses a 100 ms boundary without landing exactly on it. It can start an operation or increment a value at regular intervals.
@F1000 provides a repeating one-second condition without code that manually toggles a state.
Follow these input rules:
@<ms> and @F<ms> is milliseconds (ms).@F1000, not @F(1000).| Symptom | What to check |
|---|---|
| An entered address is rejected. | Check the region letter, address range, B/W/D prefix support, and .n bit-access support. |
| Memory Region Settings cannot be saved. | Check whether estimated SRAM use exceeds total SRAM and is shown in red. |
| An address does not appear in Used Memory. | Select the correct region tab and ladder/code filters, enter the address, and press Enter. |
| A C counter value is unexpected. | First check for overlap with the C0 through C10 board pin mapping on MPINO-8A4R(T)-S. |
@F1000 cannot be entered. | Confirm that the selected cell is a bit contact and that no parentheses are present. |