000000000000000
ذكر عدد المساهمات : 224 نقاط : 10793 تاريخ الميلاد : 04/01/1988 العمر : 36 الموقع : الخليل - نابلس العمل/الترفيه : برمجة الويب وطالب في هندسة الكمبيوتر المزاج : ممتاز
| موضوع: 1 second delay using PIC Microcontroller الجمعة مارس 09, 2012 9:14 am | |
| ;PIC Time Delay = 0,9999990 s with 999,999 machine cycles, Osc = 4 MHz include Call + return. movlw D'6' movwf CounterC movlw D'24' movwf CounterB movlw D'167' movwf CounterA loop decfsz CounterA,1 goto loop decfsz CounterB,1 goto loop decfsz CounterC,1 goto loop return
If you set Counter A = 168, then the delay will = 1.0000020 s with 1,000,002 machine cycles.
| |
|