Recently, I was working on a PLC program and ran into this error message. I had created several data structures, and marked them with wildcard output addresses as shown below:
stInProductStack AT %Q*: ARRAY [1..1200] OF ST_InProductRecord;
However, I received an error in the message window when trying to build the PLC project:
Error 3801 Data(10): The variable 'stInProductStack' is too large (24000 bytes)
This did not make sense to me at first. I was trying to use ...