Author Topic: CIP Error Path Destination  (Read 2795 times)

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
CIP Error Path Destination
« on: January 11, 2015, 10:36:44 PM »
Since upgrading some of my HMI's to v3.97  , I get is error on momentary button using the control Logix  driver

Darrell

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #1 on: January 12, 2015, 05:56:37 AM »
There is now a 3.97a version that fixed 2 problems in the CLX driver

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Re: CIP Error Path Destination
« Reply #2 on: January 12, 2015, 03:35:00 PM »
 using vb express 2010 , and I noticed the last couple of revisions that when I exit vb   , getting message vb error occur vb restarting, but I don't get it with v3.90 , buttons worked in v3.95 now have the above error , beveled button display does ot work now either . Control logix driver

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #3 on: January 12, 2015, 05:45:42 PM »
After V3.97a was posted, I discovered a problem when closing VS or deleting a CLX driver. If you open EthernetIPforCLXCom.vb and go to line 329 and change the subroutine code to this:


    Public Sub CloseConnection()
        If DLL(MyDLLInstance) IsNot Nothing Then
            DLL(MyDLLInstance).ForwardClose()
        End If
    End Sub

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Re: CIP Error Path Destination
« Reply #4 on: January 12, 2015, 08:40:07 PM »
got this

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #5 on: January 12, 2015, 08:44:23 PM »
Need a space before and after "IsNot"

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #6 on: January 12, 2015, 08:44:54 PM »
What kind of tag is your button writing to?

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Re: CIP Error Path Destination
« Reply #7 on: January 13, 2015, 07:04:44 AM »
In v3.95 I was able to use a button to toggle an input to a card and also a bool
Now getting this error on both
« Last Edit: January 13, 2015, 07:07:49 AM by Darrell »

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #8 on: January 13, 2015, 08:17:37 AM »
Is your button using a DINT or INT tag with a bit designation or is it a BOOL tag?

I just found a problem when designating a bit within a DINT or INT. If the tag is a straight BOOL, then I still have another problem to find.
« Last Edit: January 13, 2015, 08:51:21 AM by Archie »

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: CIP Error Path Destination
« Reply #9 on: January 13, 2015, 11:08:18 AM »
Try version 3.97b to see if you still have this problem.

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Re: CIP Error Path Destination
« Reply #10 on: January 13, 2015, 07:31:41 PM »
Will download it tonight and try it in the morning , I think it's a straight bool

Darrell

  • Full Member
  • ***
  • Posts: 198
  • Electrician / PLC Technician
    • View Profile
Re: CIP Error Path Destination
« Reply #11 on: January 14, 2015, 02:17:25 PM »
Seems to work   , thanks