View previous topic :: View next topic |
Author |
Message |
allenhuffman
Joined: 17 Jun 2019 Posts: 552 Location: Des Moines, Iowa, USA
|
CCS IDE: I/O error 103 |
Posted: Thu Aug 22, 2019 7:21 am |
|
|
Anyone know the cause of this? I get it often enough I though I'd look for a solution... Today, I got it after booting up the PC, loading CCS, and trying to start a debug session. Pretty clean startup. I end up shutting down and restarting when it happens and try again. _________________ Allen C. Huffman, Sub-Etha Software (est. 1990) http://www.subethasoftware.com
Embedded C, Arduino, MSP430, ESP8266/32, BASIC Stamp and PIC24 programmer.
http://www.whywouldyouwanttodothat.com ? |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19505
|
|
Posted: Thu Aug 22, 2019 7:33 am |
|
|
It means it can't write to one of the directories in it's working paths.
Basically a Delphi error (that is what CCS C is written in), this error is given
when the code can't write. Quite common with network drives or if the
compiler is installed somewhere that Windows now blocks. |
|
|
allenhuffman
Joined: 17 Jun 2019 Posts: 552 Location: Des Moines, Iowa, USA
|
|
Posted: Thu Aug 22, 2019 7:35 am |
|
|
Ttelmah wrote: | It means it can't write to one of the directories in it's working paths.
Basically a Delphi error (that is what CCS C is written in), this error is given
when the code can't write. Quite common with network drives or if the
compiler is installed somewhere that Windows now blocks. |
Interesting. All a local install, using defaults on a Windows 10 system.
Any idea what in CCS is using jvm.dll ? I'd never seen the pop up error about that one until yesterday (after doing some testing with MPLabs and installing their Wizard). Now it's looking for the jvm.dll but the path has changed, so I had to create my own bin/client folder and point it to it to make it go away. _________________ Allen C. Huffman, Sub-Etha Software (est. 1990) http://www.subethasoftware.com
Embedded C, Arduino, MSP430, ESP8266/32, BASIC Stamp and PIC24 programmer.
http://www.whywouldyouwanttodothat.com ? |
|
|
PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Thu Aug 22, 2019 10:07 am |
|
|
allenhuffman wrote: |
Any idea what in CCS is using jvm.dll ? I'd never seen the pop up error
about that one until yesterday (after doing some testing with MPLabs and
installing their Wizard). Now it's looking for the jvm.dll but the path has
changed, so I had to create my own bin/client folder and point it to it to
make it go away. |
See Ttelmah's post about jvm.dll here:
http://www.ccsinfo.com/forum/viewtopic.php?t=55758&start=2 |
|
|
newguy
Joined: 24 Jun 2004 Posts: 1907
|
|
Posted: Thu Aug 22, 2019 12:04 pm |
|
|
I also get that error from time-to-time. Seems to be tied to specific compiler versions more than others. My old reliable foolproof way to get rid of that error is to:
- shut down CCS.
- find the .ccspjt file and delete it [this step is crucial].
- restart computer.
- open CCS.
- open "top level" .c file & compile. The .ccspjt file will be regenerated. |
|
|
|