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

PIC12F508 LED

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



Joined: 28 Jan 2007
Posts: 6

View user's profile Send private message

PIC12F508 LED
PostPosted: Mon Mar 15, 2010 2:54 pm     Reply with quote

I must have had a total brain meltdown.
I can't even get a LED to light up on a PIC12F508.

I started my project with an PIC12F675.
Just a simple 2hour timer and it worked fine.
Then I changed to a PIC12F508 but it didn't work.
After some testing I created a new project just to see that I could get a LED working. But NO!

Code:

#include <12F508.h>
#FUSES INTRC, NOWDT, NOMCLR, NOPROTECT

void main(void) {
   output_low(pin_b2);
}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Mon Mar 15, 2010 4:13 pm     Reply with quote

See my post in this thread, about using the set_options() function to
fix the problem with pin GP2:
http://www.ccsinfo.com/forum/viewtopic.php?t=33336
Philosopher



Joined: 28 Jan 2007
Posts: 6

View user's profile Send private message

PostPosted: Tue Mar 16, 2010 3:00 pm     Reply with quote

Thanks alot! Very Happy

It helped me do it even simplier:
Code:

#include <12F508.h>
#FUSES INTRC, NOWDT, NOMCLR, NOPROTECT

void main(void) {
   setup_timer_0(0);
   output_low(pin_b2);
}
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