Hi everyone. I want to operate with different pins on LPC2378. I use MCB2300... I am trying to set different period to some pins. For example set P2.0 with 1s, and want to set P4.2 with 100ms. Can someone tell me how do I must get this? Thank
Petar
Why not just learn how to use a timer and implement a 1ms interrupt. Ever 100 interrupts you toggle one pin. Every 1000 interrupts you toggle the other pin. The ISR can make use of any GPIO pin, since no pin hardware mapping is used.
Ok, I will try to do something... Thank you :)