Unknown run time error.
Jim Johnson
Posts: 27
So I've been adding to a program that I did long ago. I like to think that my programming skills have improved. However, I am getting the following error in the internal diagnostics messages:
Line 1 (15:18:35):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 2 (15:18:35):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 3 (15:18:36):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 4 (15:18:36):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 5 (15:18:37):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 6 (15:18:37):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 7 (15:18:38):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 8 (15:18:38):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 9 (15:18:39):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 10 (15:18:39):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 11 (15:18:40):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 12 (15:18:40):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 13 (15:18:41):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 14 (15:18:41):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 15 (15:18:42):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 16 (15:18:42):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
No idea what it means, I've tried commenting out parts of the code to try to isolate it. all to no avail.
Does anybody have any ideas, or a list of possible errors?
The thing is the program seems to run fine, runs at less than 10% cpu. I just don't like errors, they show up at the most inconvenient times.
Thanks...Jim...
Line 1 (15:18:35):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 2 (15:18:35):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 3 (15:18:36):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 4 (15:18:36):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 5 (15:18:37):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 6 (15:18:37):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 7 (15:18:38):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 8 (15:18:38):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 9 (15:18:39):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 10 (15:18:39):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 11 (15:18:40):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 12 (15:18:40):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 13 (15:18:41):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 14 (15:18:41):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
Line 15 (15:18:42):: CIpCodeMan::GetDevChan 3 Error 0x1001 0x0152FE
Line 16 (15:18:42):: RunCode - Address Mismatch 0x4015 0x004015 0x0152FE
No idea what it means, I've tried commenting out parts of the code to try to isolate it. all to no avail.
Does anybody have any ideas, or a list of possible errors?
The thing is the program seems to run fine, runs at less than 10% cpu. I just don't like errors, they show up at the most inconvenient times.
Thanks...Jim...
0
Comments
DEFINE_VARIABLE
VOLATILE INTEGER FLASH
VOLATILE CHAR CURRENT_TIME[8]
DEFINE_PROGRAM
WAIT 3
{
IF (CURRENT_TIME <> TIME)
{
CURRENT_TIME = TIME
PULSE [FLASH]
}
}
Even though it works, it throws errors.
Like I said I wrote this a while ago. It has been properly replaced with a timeline!!
...Jim...