This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

generation of clock signal of 12MHz using LPC2368

I am a student learning microcontrollers. now i'am working on lpc2368. i had to generate a clock signal of approximately 10MHz to 12MHz using this IC.
is it possible? if yes how is it?

Parents
  • There are lots of sample programs for using LPC23xx timers. They are not black magic.

    They need to be powered up.
    They need a clock input that is fast enough.
    They need to know how many tick between each reload.
    They need to know if they should "match" different tick values and then change the state of an output pin.
    And the pin needs to know it should associate with the timer and not be a GPIO pin.

Reply
  • There are lots of sample programs for using LPC23xx timers. They are not black magic.

    They need to be powered up.
    They need a clock input that is fast enough.
    They need to know how many tick between each reload.
    They need to know if they should "match" different tick values and then change the state of an output pin.
    And the pin needs to know it should associate with the timer and not be a GPIO pin.

Children