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

What is wrong with my code: A numeric expression must appear

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



Joined: 25 Aug 2005
Posts: 16

View user's profile Send private message

What is wrong with my code: A numeric expression must appear
PostPosted: Sun Oct 25, 2009 3:39 pm     Reply with quote

I get a compiler error message that states:A numeric expression must appear here. It is associated with the statement: timer_ctl = timer_on;
Code:

#include <16f887.h>


#bit          timer_ctl   = 0x10.0

#DEFINE  timer_on    = 1;
#DEFINE  timer_off   = 0;

void main()
{
   timer_ctl = timer_on;
}
Ttelmah
Guest







PostPosted: Sun Oct 25, 2009 3:45 pm     Reply with quote

#define statements, don't have an '='....

Best Wishes
bungee-



Joined: 27 Jun 2007
Posts: 206

View user's profile Send private message

PostPosted: Sun Oct 25, 2009 3:46 pm     Reply with quote

Try like that:
Code:
#include <16f887.h>


#bit timer_ctl = 0x10.0

#DEFINE timer_on 1
#DEFINE timer_off 0

void main()
{
timer_ctl = timer_on;
}
pic_user



Joined: 25 Aug 2005
Posts: 16

View user's profile Send private message

PostPosted: Sun Oct 25, 2009 4:46 pm     Reply with quote

Ttelmah, bungee

Thanks for pointing out my mistake.
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