CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

pcd error--I/O error 103

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
sivaganapathy



Joined: 21 Feb 2008
Posts: 7

View user's profile Send private message

pcd error--I/O error 103
PostPosted: Mon Feb 25, 2008 12:27 am     Reply with quote

hi,
I am using pcd demo compiler. I wrote in ccs and program it with mplab in explore 16 microchip development board. I am using 33fj256Mc710. When i try to compile i will get I/O error 103. How to solve it?
Is there another way to program explore 16 microchip development board using ccs ? I am using ICD2 as programmer.
Code:

#include <33FJ256MC710.h>
#use delay(clock=40000000)
#fuses hs,noprotect,NOWDT

#byte PORTA=5

void main()
{
set_tris_a(0);
 porta=0b00000000;
  do
  {   output_high(pin_a0);
      output_low(pin_a1);
      output_low(pin_a2);
      delay_ms(2000);
      output_low(pin_a0);
      output_high(pin_a1);
      output_low(pin_a2);
      delay_ms(2000);
      output_low(pin_a0);
      output_low(pin_a1);
      output_high(pin_a2);
      delay_ms(2000);
     
   } while(1);
}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Mon Feb 25, 2008 11:13 am     Reply with quote

CCS uses Delphi to make their IDE. Look at the following list of I/O
errors that come from Delphi. Also send an email to CCS support
and ask them to help you on this problem.
http://erikmartin.com/pro/ioerrors.html
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group