• Configuring LPC1114 pins as GPIO's
    Hi, How to configure P0_10 and P0_11 pins of LPC1114 as GPIO's.
  • LPC1114 GPIO P1.0~P1.3 doesn't work
    I'm not able to make it work the GPIO P1.0-P1.3 of LPC1114. Both in hardware as in keil debug the GPIO's P1.0 dont clear. int main() { /* Enable AHB clock to the GPIO domain. */ LPC_SYSCON->SYSAHBCLKCTRL...
  • LPC1114 GPIO P1.0~P1.3 doesn't work
    I'm not able to make it work the GPIO P1.0-P1.3 of LPC1114. Both in hardware as in keil debug the GPIO's P1.0 dont clear. int main() { /* Enable AHB clock to the GPIO domain. */ LPC_SYSCON->SYSAHBCLKCTRL...
  • Maybe a bug of MDK 4.21 on simulator LPC1114 GPIO
    hi, i use software simulator of MDK 4.21 for LPC1114 GPIO. here is the Code: int main (void) { int i; LPC_GPIO[0]->DIR |= (1<<1); //prot0.1 as output LPC_GPIO[0]->DIR |= (1<<2); //port0...
  • LPC1114 watchdog peculiarities
    Hello, I managed to figure out why my LPC1114 keeps on resetting when the watchdog is enabled: it seems that if one feeds the watchdog too often: for (;;) { feed_wdt() ; } the processor...