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

PIC16F1828 Internal OSC up to 32MHZ

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



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Thu Jan 19, 2012 4:18 pm     Reply with quote

This program should blink an LED at 1 Hz on pin C0.
Code:

#include <16F1828.H>
#fuses INTRC_IO, NOWDT, BROWNOUT, PUT, NOLVP
#use delay(clock=32M)

//==========================================
void main()
{

while(1)
  {
   output_toggle(PIN_C0);
   delay_ms(500);
  }

}
nike&rose



Joined: 17 Jan 2012
Posts: 2

View user's profile Send private message

Re: PIC16F1828 Internal OSC up to 32MHZ
PostPosted: Thu Jan 19, 2012 6:21 pm     Reply with quote

[spam]&rose wrote:
Hi Everyone,
How to speed up to 32MHZ use Internal Oscillator in CCS Compiler ?
CCS Version is 4.128.



Very Thanks for temtronic and PCM programmer your reply.
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