e đã viết code và mô phỏng thành công như sao khi nạp nó lại ko chạy đc. dù e chỉ nạp đèn chớp tắt bt lun. e mới dùng con PIC nên ko biết lý do j. chỉ sợ nó sai chổ nạp thui. e dùng thach anh 20Mhz cho porte chóp tac delay 200ms
#include <16f877a.h> //thu vien dung chung
#Fuses nowdt,hs,noput, noprotect, nodebug, nobrownout,nolvp,nocpd,nowrt
#use delay (clock=20000000) // su dung thach anh 20mhz
void main()
{
set_tris_e(0x00);
while(true)
{
output_e(0xff);
delay_ms(200);
output_e(0x00);
delay_ms(200);
}
}
a nào giúp e vs
#include <16f877a.h> //thu vien dung chung
#Fuses nowdt,hs,noput, noprotect, nodebug, nobrownout,nolvp,nocpd,nowrt
#use delay (clock=20000000) // su dung thach anh 20mhz
void main()
{
set_tris_e(0x00);
while(true)
{
output_e(0xff);
delay_ms(200);
output_e(0x00);
delay_ms(200);
}
}
a nào giúp e vs
Comment