Senthilkumar_rjpm
Full Member level 2
Hi All...
Today i commit a small project using 12c508. This is first time i am using this ic. So i start to check a small blink code....
//=========================
#include <12C508a.h>
#fuses INTRC, NOWDT
#use delay(clock=4000000)
//=========================
void main()
{
while(1)
{
output_high(PIN_GP0);
delay_ms(500);
output_low(PIN_GP0);
delay_ms(500);
}
}
//=========================
I am using MPLAB6.30.
Compiler CCS PCM-3.114 (original version)
My problem is;
I didn't find 12c508 header file in Installed folder(PIC C- Devices).
If i build a code it shows "BUILD FAILD".
Why 12c508 Header file missing in MPLAB Project Bar?
Is there any source to add 12c508 header file in that folder(PIC C- Devices).?
Pls healp me..
Thanks in Advance...
Today i commit a small project using 12c508. This is first time i am using this ic. So i start to check a small blink code....
//=========================
#include <12C508a.h>
#fuses INTRC, NOWDT
#use delay(clock=4000000)
//=========================
void main()
{
while(1)
{
output_high(PIN_GP0);
delay_ms(500);
output_low(PIN_GP0);
delay_ms(500);
}
}
//=========================
I am using MPLAB6.30.
Compiler CCS PCM-3.114 (original version)
My problem is;
I didn't find 12c508 header file in Installed folder(PIC C- Devices).
If i build a code it shows "BUILD FAILD".
Why 12c508 Header file missing in MPLAB Project Bar?
Is there any source to add 12c508 header file in that folder(PIC C- Devices).?
Pls healp me..
Thanks in Advance...
Last edited: