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

DSP Won't Compile

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



Joined: 27 Jan 2004
Posts: 12

View user's profile Send private message

DSP Won't Compile
PostPosted: Wed Sep 19, 2007 9:34 am     Reply with quote

Just a couple days ago I upgraded to PCWHD so I can program a dsPIC30F2010. I used the PIC wizard to make the program below.
The compiler won't even get past the setup commands before the main sub-routine. Have I done something wrong or is the upgrade I purchased not ready for prime time? I am using PCD v4.057

Code:

#include <30F2010.h>
#use delay(clock=20000000,RESTART_WDT)

#FUSES HS                       //High speed Osc (> 4mhz)
#FUSES PUT16                    //Power On Reset Timer value 16ms
#FUSES NOBROWNOUT               //No brownout reset
#FUSES BORV20                   //Brownout reset at 2.0V
#FUSES NOMCLR                   //Master Clear pin used for I/O
#FUSES NOPROTECT                //Code not protected from reading
#FUSES NOWRT                    //Program memory not write protected

#use rs232(baud=9600,parity=N,xmit=PIN_F3,rcv=PIN_F2,bits=8,restart_wdt)

void main()
{
   setup_adc_ports(NO_ANALOGS|VSS_VDD);
   setup_adc(ADC_OFF);
   setup_psp(PSP_DISABLED);
   setup_spi(SPI_SS_DISABLED);
   setup_timer_0(RTCC_INTERNAL|RTCC_DIV_1);
   setup_timer_1(T1_DISABLED);
   setup_timer_2(T2_DISABLED,0,1);
   setup_comparator(NC_NC_NC_NC);
   setup_vref(FALSE);

   while(TRUE)                                                 
   {
   
   }
}


These are the errors that I receive when trying to compile.

*** Error 12 "DSP_232.C Line 30(14,21); Undefined identifier ADC_OFF
*** Error 12 "DSP_232.C Line 31(4,17); Undefined identifier setup_psp
*** Error 12 "DSP_232.C Line 33(4,17); Undefined identifier setup_timer-0
*** Error 12 "DSP_232.C Line 34(4,17); Undefined identifier setup_timer-1
*** Error 12 "DSP_232.C Line 35(4,17); Undefined identifier setup_timer-2
*** Error 12 "DSP_232.C Line 36(4,17); Undefined identifier setup_comparator
*** Error 12 "DSP_232.C Line 37(4,14); Undefined identifier setup_vref
7 Errors, 0 Warnings
Ttelmah
Guest







PostPosted: Wed Sep 19, 2007 9:42 am     Reply with quote

Have you looked in the 30F2010.h file, to see what CCS have called the identifiers for the new chips?. Looking at the errors,it'd appear that they have changed the names for these.

Best Wishes
whmeade10



Joined: 27 Jan 2004
Posts: 12

View user's profile Send private message

PostPosted: Wed Sep 19, 2007 12:31 pm     Reply with quote

I checked out the .h file, and sure enough, some of the names have been changed, some of the parameters don't exist, or some are correct but still won't work. I guess its a matter of lets get the program out and let the users tell us whats wrong with it. Evil or Very Mad Thanks again for your help Ttelmah
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