Hai,
I start to practice micro controller programming, I use PiC 16f676 i need the configuration for that,This is the C code with configuration mention below. kindly edit or give me a suitable configuration for that.
Code C - [expand ] 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include<htc.h>
#include <pic.h>
//__CONFIG (CPD_OFF & CP_OFF & BODEN_OFF & PWRTE_ON & WDT_OFF);
//_CONFIG(BGHIGH & UNPROTECT & BORDIS & MCLRDIS & PWRTEN & INTOSCCLKO & WDTDIS);
//_CONFIG(BGHIGH & UNPROTECT & BORDIS & MCLRDIS & PWRTDIS & INTOSCCLKO & WDTDIS);
//_CONFIG(UNPROTECT & BOREN & MCLRDIS & PWRTEN & WDTDIS & INTOSCCLKO);
_CONFIG( BGHIGH & UNPROTECT & BORDIS & MCLRDIS & PWRTEN & INTOSCCLKO & WDTDIS) ;
//__CONFIG (_INTRC_OSC_NOCLKOUT & _CPD_OFF & _CP_OFF & _BODEN_OFF & _PWRTE_ON & _WDT_OFF);
#define _XTAL_FREQ 4000000
void delay_ms( int delay_data)
{
while ( delay_data-- )
{
unsigned int delay_data1= 96 ;
while ( delay_data1-- ) ;
}
}
void main( )
{
TRISC= 0 ;
while ( 1 )
{
PORTC= 0xFF ;
/*PORTC=0x01;
delay_ms(5000);
PORTC=0;
delay_ms(5000);*/
}
}
regards
Kvs
Last edited by a moderator: Mar 27, 2014