Em chào anh chị trong diễn đàn!!!!em mới làm quen với lập trình trên pic 18f4550 bằng ccs em chỉ làm 1 ví dụ đơn giản là nháy led thôi mà sao khi mô phỏng hoài nó không chạy!!!!em mong anh chị giúp em với.em cảm ơn anh chị nhiều!!!!Đây là code của em.
#include <18f4550.h>
#fuses HSPLL,NOWDT,NOPROTECT,NOLVP,NODEBUG,USBDIV,PLL5,CP UDIV1,VREGEN
#use delay(clock=20000000)
void main()
{
set_tris_d(0x00);
while(true)
{
output_high(pin_d0);
delay_ms(500);
output_low(pin_d1);
delay_ms(500);
}
}
#include <18f4550.h>
#fuses HSPLL,NOWDT,NOPROTECT,NOLVP,NODEBUG,USBDIV,PLL5,CP UDIV1,VREGEN
#use delay(clock=20000000)
void main()
{
set_tris_d(0x00);
while(true)
{
output_high(pin_d0);
delay_ms(500);
output_low(pin_d1);
delay_ms(500);
}
}
Comment