• How to measure pulse width applied in INT0 of Cypress USB FX2 CY7C68013
    Hi, I want to measure the width of the pulse applied in INT0. My code base on the sample of KEIL: http://www.keil.com/download/docs/8051_timer0_pulse.zip.asp The result printed out in Serial1 window...
  • How to measure pulse width applied in INT0 of Cypress USB FX2 CY7C68013
    Hi, I want to measure the width of the pulse applied in INT0. My code base on the sample of KEIL: http://www.keil.com/download/docs/8051_timer0_pulse.zip.asp The result printed out in Serial1 window...
  • ..External Interrupt..INT0
    hello all, I am working with AT89C51CC01 which based on 8051. I had write one program of external interrupt. See the code as follows. void ex0_isr (void) interrupt 0 { CCAP1H = 0x5A; // 35% Duty...
  • ..External Interrupt..INT0
    hello all, I am working with AT89C51CC01 which based on 8051. I had write one program of external interrupt. See the code as follows. void ex0_isr (void) interrupt 0 { CCAP1H = 0x5A; // 35% Duty...
  • Timer0 and INT0 interrupt
    Question with follwing code: EA = 0; ET0 = 1; INT0 =1; EA = 1; T0_start(); while ( T0_interrupt ); if ( Int0_interrupt ){} If I can find interrupt 0 has happened when timer0 is running? Thank you...