rs logix 500 to rs logix 5000 conversion

Join Date
Nov 2011
Location
gujarat,india
Posts
4
dear all,

i have one slc5/04.in that indirect addressing is used so when i convert to rs 5000 it gives error so how to solve that error?
like N17:[N23:1][N22:1]
SO PLEASE LET KNOW HOW TO SOLVE THIS ISSUE

other information regardong this conversion
 
There's something missing from your address, probably a decimal point.

N17:[N23:1].[N22:1]

This is a two-level indirect address. The first pointer, N23:1, is for the Element number. The second pointer, N22:1, is for the Bit number.

The same effect can be addressed in RSLogix 5000, but the addressing is going to look very confusing because of the way the SLC-500 data tables are converted to INT[x] array tags.

N17[N23[1]].[N22[1]] should be the correct syntax.

If this were my system, I would create new, descriptive tags for N23:1 and N22:1, even if they are just called WordPointer and BitPointer.

RSLogix 5000 conversion utility warnings are sometimes just for the purpose of drawing your attention to a function that requires careful consideration, and indirect addressing is one of those functions.
 
If this were my system, I would create new, descriptive tags for N23:1 and N22:1, even if they are just called WordPointer and BitPointer.

If this were my system, I would create new, descriptive alias tags for N23[1] and N22[1], and use these in my code....

WordPointer = alias for N23[1]
BitPointer = alias for N22[1]

N17[WordPointer].[BitPointer]

I would not go messing with the original code
 

Similar Topics

buen dia. tengo una falla al pasar los tags de mi plc SLC 5 0/4 a mi panel me aparece un error Problem writing value " " to item <tag name>...
Replies
1
Views
65
Hello, I have a 1764 1500 LSP Series A that keeps failing with DTL_E_FAIL I/O error. Searching around it seems there's a weird issue specifically...
Replies
2
Views
92
Will someone please convert this logic to pdf?
Replies
2
Views
118
I have been doing logic programming and troubleshooting for about 25 years. I started working for a new company as PLC Application Engineer and I...
Replies
5
Views
177
Hello, Haven't been on in a while. I need to generate a bit level pdf of the I/O for RSLogix 500. I can generate a report but it just shows the...
Replies
1
Views
140
Back
Top Bottom