Downloading PLC Program to Controller Error

SWARP3

Member
Join Date
Mar 2023
Location
Minnesota
Posts
2
Hello,

I am attempting to download a program someone else created to an existing PLC (1769-L24ER-QB1B CompactLogix5370 Controller). However, when I initiate the download I am met with an error... "Error: Rung 3, OTE, Operand 0: Invalid bit specifier."

This error points to an individual bit in the program like "MD_X2000:O.Data[2].10" ... And, when I search in controller tags it maxes out at Data[2].7

I'm guessing it has something to do with my base data type size?

Any help is appreciated!

Thanks
 
This error points to an individual bit in the program like "MD_X2000:O.Data[2].10" ... And, when I search in controller tags it maxes out at Data[2].7

I'm guessing it has something to do with my base data type size?

You are correct that it is related to data type -- the tag is an array of SINT (since it has 8 bits per member), so any bit address above 7 is not valid.

As alan_505 refers to, the array is part of a system-generated tag for an IO device or module named MD_X2000, meaning either the programmer incorrectly set it up when creating it the in the IO tree or misremembered how the data was formatted when programming the OTE (or just had a typo).

If you have the manual for the device you may be able to cross-reference it with what the program is doing to figure out which and correct the issue. Or contact the programmer.
 

Similar Topics

Hi, I'm looking for advice about downloading the program from a PLC and storing it in a form that can easily be uploaded back to a PLC. I am able...
Replies
9
Views
2,390
I have a Q00 PLC from a customer who want to modify some in Main program. First I upload program from PLC using GXWork 2. Everything is ok. But...
Replies
0
Views
4,424
I have a Millennium 3 CD12 PLC dating from around 2008. I'd like to download and modify the current program on it. When I connect to it and click...
Replies
0
Views
2,119
[Just realized my 100th post! wohooo] Hey everyone it has been a while, I have a few questions regarding download for the siemens experts more...
Replies
0
Views
2,208
I need to do some research on Mitsubishi PLC program. I want to download original program (made by someone else, I have no source code) and save...
Replies
2
Views
9,041
Back
Top Bottom