Help for Start 1st project with HI-TECH C
Posted: Sat May 12, 2012 2:15 pm
Hi Friends,
I have started to coding with HI-TECH C compiler.I have used MPLAB IDE.
Please,tell
1.Is HI-TECH C a compiler? And,Is MPLAB a IDE?(don't write more,please tell Yes or No
)
2.Am i correct that compiler settings in MPLAB?(tell more about this
)
3.I coded small project like this.But,Compiler give me "Build Faild"
Please,give me some example code or links.
I have started to coding with HI-TECH C compiler.I have used MPLAB IDE.
Please,tell
1.Is HI-TECH C a compiler? And,Is MPLAB a IDE?(don't write more,please tell Yes or No

2.Am i correct that compiler settings in MPLAB?(tell more about this


Code: Select all
void main(){
TRISB=0;
PORTB=0;
do{
PORTB=~PORTB;
Delay_ms(500);
}while(1)
}