View previous topic :: View next topic |
Author |
Message |
CMatic
Joined: 11 Jan 2012 Posts: 69
|
Error message Contact CCS |
Posted: Sat Oct 24, 2015 12:00 am |
|
|
I have CCS C CCS PCM C Compiler, Version 5.026.
The file is now generating error as shown below:
*** Error 44 "Thermo_Menu_v9.c" Line 677(1,1): Internal Error - Contact CCS LABEL SCR=2699
Does any one knows what does this means.
Thanks |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19492
|
|
Posted: Sat Oct 24, 2015 1:19 am |
|
|
It's telling you what to do. Contact CCS. This is _not_ 'CCS'. This is a user forum. |
|
|
temtronic
Joined: 01 Jul 2010 Posts: 9220 Location: Greensville,Ontario
|
|
Posted: Sat Oct 24, 2015 5:35 am |
|
|
There is a simple way (other than contacting CCS) to figure what it is.
Go back 1 version of your program and look at the new code of the current non working version. It will be obvious what code you just added that made the compiler stop.
Whatever you did in the new version is very likely what gave the error.
While having 20-30-59 versions of one program may seem excessive and ridiculous, since it doesn't take up any 'real' amount of HD space, it DOES make troubleshooting code a LOT easier!
Yes, once you have a final version, you can delete all but say the last 3 versions or maybe 4, depending on how many changes per version you make.
Jay |
|
|
guy
Joined: 21 Oct 2005 Posts: 297
|
|
Posted: Mon Oct 26, 2015 5:29 am |
|
|
I agree with Jay - try going back to an older version of the code. I also had a case when, after adding a piece of code, the message would sometimes appear after compilation and sometimes not. In another case it appeared due to while(true) instead of while(1) but it could be from numerous reasons. |
|
|
dyeatman
Joined: 06 Sep 2003 Posts: 1933 Location: Norman, OK
|
|
Posted: Mon Oct 26, 2015 9:52 am |
|
|
Every single case of this I have encountered has always been a syntax
error on my part. I just comment out the latest lines until the problem goes
away and that tells me where to look. _________________ Google and Forum Search are some of your best tools!!!! |
|
|
CMatic
Joined: 11 Jan 2012 Posts: 69
|
|
Posted: Tue Nov 10, 2015 9:20 am |
|
|
dyeatman wrote: | Every single case of this I have encountered has always been a syntax
error on my part. I just comment out the latest lines until the problem goes
away and that tells me where to look. |
Yes, it was syntax. Thanks a lot |
|
|
|