336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
▼필수 프로그램 CCSC 4.093버젼 (압축 해제후 ccsc.exe를 경로로 잡아준다.)
▼위 파일로 안된다면 아래껄로
설치후 Project >> Set Language Tool Location
▼아래 그림처럼 경로지정후 Apply and then OK.
http://www.embeddedcodesource.com/codedeveloper/ccs-inc
▲Code Snippets.
blink-an-led-using-ccs-plugin-within-mplabx.zip
▲둘다 같은 파일이다.
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
#include <16f877a.h>
#use delay (crystal=20000000) //20MHz Crystal......코딩이 좀 쉽군
#define GREEN_LED PIN_A5
void main() {
while (TRUE)
{
output_low(GREEN_LED);
delay_ms(1000);
output_high(GREEN_LED);
delay_ms(1000);
}
}
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
위 코드를 MPLAB X에서 쓸때
MPLAB X에 CCSC를 얹어서 쓰는 법을 정리해보겠다.