• EEPROM Interrupt
    Hello, I am using P89LPC936 and configured adc0 channel0, 1, 2, 3 and adc1 channel0. I have also configured EEPROM to save value of OCRBL as per my requirement. After debugging it shows a...
  • EEPROM and INTERRUPTS
    Hello, I now have to disable the interrupts to use EEPROM read and write. What is the reason for this? For flash writes I can understand since the code executes from flash, but for EEPROM, and especially...
  • Accessing EEPROM
    Is there a C technique for writing/reading from a byte in on-chip EEPROM? I can do this in asm with something like this: clr ea mov deedat,@r0 mov deeadr,@r1 setb ea I would prefer to do it...
  • Interrupt question
    Using the Atmel AT91SAM7SE12 device I am trying to write an interrupt handler for the USARTS. I'm having trouble finding documentation on how to set up the vector table. Is there an example project...
  • Interrupt question
    Hi, I'm using the STM32F103ZD. The TIM2_IRQHandler() interrupt handler decrements a value, checks for zero, if so does some action and (re-) sets this value to 1. So each call to this interrupt...