cho em hỏi chip ARM có gì mạnh hơn mấy con AVR hay PIC hay 8051 mà mình phải xài nó. Sao không xài 8051 hay PIC cho nhanh
bạn có thể xem tổng quan về LPC2000 ở đầu thread này
http://dientuvietnam.net/forums/showthread.php?t=12936
#include "LPC214x.H" // LPC2148 MPU Register /* pototype section */ int main(void) { unsigned long int p; int on_flag; // xxxx xxxx xxxx xxxx xxxx xxxx 1xxx 1xxx IODIR0 = 0x00000088; // P0.3 and p0.7 output IOCLR0 = 0x00000008; //P0.3 on IOSET0 = 0x00000080; //p0.7 off on_flag=0; while(1) { p=IO0PIN; //doc trang thai port 0 p=(p&(1<<5))>>5;// kiem tra bit p0.5 if(p==0)//neu nhan sw { if(on_flag==0) { IOCLR0|=1<<7 ; on_flag=1; } else { on_flag=0; IOSET0|=1<<7; } } } }
Comment