• how to use loops in TIM_IRQHANDLER?
    I want to design a variable width PWM waveform using IRQ, but I am unable to use loops in TIM_IRQHANDLERS. below is the code i am using in TIM_IRQHANDLER void TIM2_IRQHandler(void) { volatile float...
  • how to use loops in TIM_IRQHANDLER?
    I want to design a variable width PWM waveform using IRQ, but I am unable to use loops in TIM_IRQHANDLERS. below is the code i am using in TIM_IRQHANDLER void TIM2_IRQHandler(void) { volatile float...
  • How can I get an efficient loop?
    I have written the following code to perform a copy procedure between RAM and FLASH Memory: unsigned char i; i = 0x00; do{ i --; *(&FLASHADDRESS + j + i) = DataBuffer[i]; }while(i != 0x00...
  • How can I get an efficient loop?
    I have written the following code to perform a copy procedure between RAM and FLASH Memory: unsigned char i; i = 0x00; do{ i --; *(&FLASHADDRESS + j + i) = DataBuffer[i]; }while(i != 0x00...
  • I2C program runs in an infinite loop even without a loop
    Evaluation Board: MCB2300 Microcontroller: LPC2388 IDE: uVision V4.03q My Setup: ============ 1. I interfaced a 2-Wire Serial EEPROM (2K) to LPC2388. 2. I am using I2C0 on this board. 3...